Results 1 to 5 of 5
Thread: About throw message
- 08-22-2010, 01:11 AM #1
Member
- Join Date
- Jul 2010
- Posts
- 6
- Rep Power
- 0
About throw message
Hi all,
I have an application which throws an exception whenever I use a different input file and I use swing button to run the application. Is it possible to ask the user to input the correct file in a message dialog box to the user whenever the application throws that exception. Now I'm getting the exception message in a console window(Eclipse).
- 08-22-2010, 01:21 AM #2
Senior Member
- Join Date
- Apr 2010
- Location
- Belgrade, Serbia
- Posts
- 278
- Rep Power
- 4
When you have function that throws exception and when you are calling it in your program, you must call it in a try / catch block
for example:
public void readNextLine() throws IOException {
// code here
}
and when you call it in your program it goes in try/catch block
try {
myFile.readNextLine();
} catch(IOException exception) {
exception.printStackTrace();
System.exit(1);
}
- 08-22-2010, 02:01 AM #3
- Join Date
- Jul 2007
- Location
- Colombo, Sri Lanka
- Posts
- 11,374
- Blog Entries
- 1
- Rep Power
- 18
I think that the OP wants to recursively ask user to enter the correct file name until user enters the incorrect one. In the catch block you repeat the logic that to ask from user to enter the values again.
- 08-22-2010, 03:08 AM #4
Member
- Join Date
- Jul 2010
- Posts
- 6
- Rep Power
- 0
Hi
Thanks
I understood it and it works.
- 08-22-2010, 11:48 AM #5
- Join Date
- Jul 2007
- Location
- Colombo, Sri Lanka
- Posts
- 11,374
- Blog Entries
- 1
- Rep Power
- 18
Can you mark the thread solved then?
Similar Threads
-
java message box, how to not show multiple message box with same title or content
By oohay in forum AWT / SwingReplies: 6Last Post: 06-04-2010, 08:43 PM -
what exception to throw
By DoolinDalton in forum New To JavaReplies: 5Last Post: 02-10-2010, 03:45 PM -
throw exception
By GIRISH PATEL in forum New To JavaReplies: 4Last Post: 04-23-2009, 04:35 AM -
throw an exception
By sfe23 in forum New To JavaReplies: 3Last Post: 02-14-2009, 04:41 AM -
Difference between Throws and Throw
By Poonam in forum New To JavaReplies: 7Last Post: 02-06-2008, 04:52 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks