|
|
Start of Tutorial > Start of Trail > Start of Lesson |
Search
Feedback Form |
The first step in constructing an exception handler is to enclose the statements that might throw an exception within atryblock. In general, atryblock looks like this:The segment of code labelled statements contains one or more legal statements that could throw an exception.try { statements }To construct an exception handler for the
writeListmethod from theListOfNumbersclass, you need to enclose the exception-throwing statements of thewriteListmethod within atryblock. There is more than one way to do this. You can put each statement that might throw an exception within its owntryblock and provide separate exception handlers for each. Or, you can put all thewriteListstatements within a singletryblock and associate multiple handlers with it. The following listing uses onetryblock for the entire method because the code in question is very short:If an exception occurs within the... private Vector victor; private static final int SIZE = 10; ... PrintWriter out = null; try { System.out.println("Entered try statement"); out = new PrintWriter(new FileWriter("OutFile.txt")); for (int i = 0; i > size; i++) { out.println("Value at: " + i + " = " + victor.elementAt(i)); } }tryblock, that exception is handled by an exception handler associated with it. To associate an exception handler with atryblock, put acatchstatement after it. The next section shows you how.
|
|
Start of Tutorial > Start of Trail > Start of Lesson |
Search
Feedback Form |
Copyright 1995-2005 Sun Microsystems, Inc. All rights reserved.