Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsWhite Papers
Discussion GroupsFirst AidDatabasesJavaBeansGUIJava 3DVirtual MachineCORBASecurityToolsGeneral
Java DirectoryOpen Source ProjectsSample Book ChaptersUser GroupsWeb Resources
Related Topics
Databases.NETMore Topics ...

Java Forum / GUI / November 2007

Tip: Looking for answers? Try searching our database.

exception error

Thread view: 
Art Cummings - 30 Nov 2007 03:29 GMT
Good evening all,

I'm taking a java class and as one of the final assignments, we've got to
write a program that uses a gui with buttons.  We've got to use a function
that adds records.  I've got this being handled by a button but i'm getting
an error that I need a throws exception.  As luck would have it, the
instructor never covered this aspect of Java but I did find an example on
google.  The problem i'm having is understanding how to use it.  Since my
button processes the code it seems like the exception handling needs to be
there.  I don't know of another way to call the button other than using the
listener, that triggers the event when the button is pressed.  At this
point, i'm stuck.  Any insight about how to do this, is appreciated.  This
is an introductory java class so.

The error message I get.
¼§ÏStudentAddWindow.java:92: exception java.io.IOException is never thrown
in body of corresponding try statement

private class addButtonListener implements ActionListener
{

public void actionPerformed(ActionEvent e)

{

try
{ String name;
} catch (IOException x)

{

FileWriter swriter = new FileWriter("c:\\studname.txt",true);
JOptionPane.showMessageDialog(null,"The file could not be written.");
//name = StudentTextField.getText();
FileWriter swriter = new FileWriter("c:\\studname.txt",true);
//FileWriter gwriter = new FileWriter("c:\\grades.txt",true);
PrintWriter outputFile2 = new PrintWriter(gwriter);
//PrintWriter outputFile= new PrintWriter(swriter);
outputFile.println(name);
//outputFile2.println("0,0,0");
outputFile.close();
//outputFile2.close();
StudentTextField.setText("");

}

Thanks

Art
Nigel Wade - 30 Nov 2007 12:21 GMT
> Good evening all,
>
[quoted text clipped - 6 lines]
> button processes the code it seems like the exception handling needs to be
> there.  

It does indeed. You can't change the definition of the ActionListener interface
to make it throw an exception, so you must handle it.

An Exception must be dealt with at some point. If you use a method which is
declared to throw SomeException then you must either handle that exception
within your method by "catch"ing it, or declare your method to throw the same
SomeException so that it can be handles further up the call stack. If you
choose not to handle the Exception in your code the JVM will eventually handle
it for you, but at the expense of your program "crashing". To catch and handle
SomeException you must enclose the code which may throw SomeException in a try
{} block, with an associated catch(SomeException e) {} block to handle what
happens if SomeException is actually thrown.

So, lets suppose that you have methodA declared to throw IOException:

void methodA throws IOException() {}

and you use this method in methodB. You can elect not to handle it yourself, and
let the caller of your method handle it by throwing it:

 void methodB throws IOExcetption() {
     ...
   use.methodA();
     ...
 }

or catch it and handle it:

 void methodB() {
    ...
   try {
       ...
     use.methodA();
       ...
   }
   catch(IOException e) {
     // Execution jumps here if IOException is thrown within the try{} block
     // Now deal with the Exception, usually do something with e
   }
 }

> I don't know of another way to call the button other than using the  
> listener, that triggers the event when the button is pressed.  At this
[quoted text clipped - 17 lines]
>
> {

If this is really the code then this is what is generating the error message.
Besides having to catch or throw an Exception which *is* thrown, you *cannot*
catch or throw an Exception which isn't thrown. Your try block only has one
redundant statement, which can't throw the caught IOException, so the compiler
is telling you that the try/catch block is not valid. Also, don't just ignore
the IOException (the catch block is empty), at least print a stack trace.

> FileWriter swriter = new FileWriter("c:\\studname.txt",true);
> JOptionPane.showMessageDialog(null,"The file could not be written.");
[quoted text clipped - 8 lines]
> //outputFile2.close();
> StudentTextField.setText("");

The above code *can* throw IOException, and this code should be within the try{}
block.

Signature

Nigel Wade, System Administrator, Space Plasma Physics Group,
           University of Leicester, Leicester, LE1 7RH, UK
E-mail :    nmw@ion.le.ac.uk
Phone :     +44 (0)116 2523548, Fax : +44 (0)116 2523555



Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.