finally
block always executes when the try
block exits. This ensures that the finally
block is executed even if an unexpected exception occurs. But finally
is useful for more than just exception handling — it allows the programmer to avoid having cleanup code accidentally bypassed by a return
, continue
, or break
. Putting cleanup code in a finally
block is always a good practice, even when no exceptions are anticipated.
Note: If the JVM exits while thetry
orcatch
code is being executed, then thefinally
block will not execute. Likewise, if the thread executing thetry
orcatch
code is interrupted or killed, thefinally
block will not execute even though the application as a whole continues.
The try
block of the writeList
method that you've been working with here opens a PrintWriter
. The program should close that stream before exiting the writeList
method. This poses a somewhat complicated problem because writeList
's try
block can exit in one of three ways.
- The
new FileWriter
statement fails and throws anIOException
. - The
vector.elementAt(i)
statement fails and throws anArrayIndexOutOfBoundsException
. - Everything succeeds and the
try
block exits normally.
finally
block regardless of what happens within the try
block. So it's the perfect place to perform cleanup. The following finally
block for the writeList
method cleans up and then closes the PrintWriter
.
In thefinally {
if (out != null) {
System.out.println("Closing PrintWriter");
out.close();
} else {
System.out.println("PrintWriter not open");
}
}
writeList
example, you could provide for cleanup without the intervention of a finally
block. For example, you could put the code to close the PrintWriter
at the end of the try
block and again within the exception handler for ArrayIndexOutOfBoundsException
, as follows. However, this duplicates code, thus making the code difficult to read and error-prone should you modify it later. For example, if you add code that can throw a new type of exception to thetry {
out.close(); //Don't do this; it duplicates code.
} catch (FileNotFoundException e) {
out.close(); //Don't do this; it duplicates code.
System.err.println("Caught: FileNotFoundException: "
+ e.getMessage());
throw new RuntimeException(e);
} catch (IOException e) {
System.err.println("Caught IOException: "
+ e.getMessage());
}
try
block, you have to remember to close the PrintWriter
within the new exception handler.
Important: Thefinally
block is a key tool for preventing resource leaks. When closing a file or otherwise recovering resources, place the code in afinally
block to insure that resource is always recovered.
No comments:
Post a Comment