Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.java.gui > #2836 > unrolled thread

exception error

Started by"Art Cummings" <art.cummings@THRWHITE.remove-dii-this>
First post2011-04-27 15:41 +0000
Last post2011-04-27 15:41 +0000
Articles 2 — 2 participants

Back to article view | Back to comp.lang.java.gui


Contents

  exception error "Art Cummings" <art.cummings@THRWHITE.remove-dii-this> - 2011-04-27 15:41 +0000
    Re: exception error "Nigel Wade" <nigel.wade@THRWHITE.remove-dii-this> - 2011-04-27 15:41 +0000

#2836 — exception error

From"Art Cummings" <art.cummings@THRWHITE.remove-dii-this>
Date2011-04-27 15:41 +0000
Subjectexception error
Message-ID<3omdnc09V7LaHtLanZ2dnUVZ_hCdnZ2d@comcast.com>
  To: comp.lang.java.gui
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.
+o-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

---
 * Synchronet * The Whitehouse BBS --- whitehouse.hulds.com --- check it out free usenet!
--- Synchronet 3.15a-Win32 NewsLink 1.92
Time Warp of the Future BBS - telnet://time.synchro.net:24

[toc] | [next] | [standalone]


#2838

From"Nigel Wade" <nigel.wade@THRWHITE.remove-dii-this>
Date2011-04-27 15:41 +0000
Message-ID<fiov7l$og7$1@south.jnrs.ja.net>
In reply to#2836
  To: comp.lang.java.gui
Art Cummings wrote:

> 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.  

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 
> 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.
> +o-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)
> 
> {

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.");
> //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("");
> 
> 

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

-- 
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

---
 * Synchronet * The Whitehouse BBS --- whitehouse.hulds.com --- check it out free usenet!
--- Synchronet 3.15a-Win32 NewsLink 1.92
Time Warp of the Future BBS - telnet://time.synchro.net:24

[toc] | [prev] | [standalone]


Back to top | Article view | comp.lang.java.gui


csiph-web