http://docs.oracle.com/javase/7/docs/technotes/guides/language/try-with-resources.html
The try-with-resources Statement Thetry
-with-resources statement is atry
statement that declares one or more resources. Aresourceis as an object that must be closed after the program is finished with it. Thetry
-with-resources statement ensures that each resource is closed at the end of the statement. Any object that implementsjava.lang.AutoCloseable
, which includes all objects which implementjava.io.Closeable
, can be used as a resource.
The following example reads the first line from a file. It uses an instance ofBufferedReader
to read data from the file.BufferedReader
is a resource that must be closed after the program is finished with it:
使用try-with-resources, 可以自动关闭实现了AutoCloseable或者Closeable接口的资源。比如下面的函数,在try语句结束后,不论其包括的代码是正常执行完毕还是发生异常,都会自动调用BufferdReader的Close方法。
static String readFirstLineFromFile(String path) throws IOException { try (BufferedReader br = new BufferedReader(new FileReader(path))) { return br.readLine(); } }
In this example, the resource declared in thetry
-with-resources statement is aBufferedReader
. The declaration statement appears within parentheses immediately after thetry
keyword. The classBufferedReader
, in Java SE 7 and later, implements the interfacejava.lang.AutoCloseable
. Because theBufferedReader
instance is declared in atry
-with-resource statement, it will be closed regardless of whether thetry
statement completes normally or abruptly (as a result of the methodBufferedReader.readLine
throwing anIOException
).
Prior to Java SE 7, you can use afinally
block to ensure that a resource is closed regardless of whether thetry
statement completes normally or abruptly. The following example uses afinally
block instead of atry
-with-resources statement:
在出现try-with-resources之前可以使用finally子句来确保资源被关闭, 比如下面的方法。
但是两者有一个不同在于,readFirstLineFromFileWithFinallyBlock方法中,如果finally子句中抛出异常,将会抑制try代码块中抛出的异常。
相反,readFirstLineFromFile方法中,如果try-with-resources语句中打开资源的Close方法和try代码块中都抛出了异常,Close方法抛出的异常被抑制,try代码块中的异常会被抛出。
关于这一点,可以看最后的例子。
static String readFirstLineFromFileWithFinallyBlock(String path) throws IOException { BufferedReader br = new BufferedReader(new FileReader(path)); try { return br.readLine(); } finally { if (br != null) br.close(); } }
However, in this example, if the methodsreadLine
andclose
both throw exceptions, then the methodreadFirstLineFromFileWithFinallyBlock
throws the exception thrown from thefinally
block; the exception thrown from thetry
block is suppressed. In contrast, in the examplereadFirstLineFromFile
, if exceptions are thrown from both thetry
block and thetry
-with-resources statement, then the methodreadFirstLineFromFile
throws the exception thrown from thetry
block; the exception thrown from thetry
-with-resources block is suppressed. In Java SE 7 and later, you can retrieve suppressed exceptions; see the sectionSuppressed Exceptionsfor more information.
You may declare one or more resources in atry
-with-resources statement. The following example retrieves the names of the files packaged in the zip filezipFileName
and creates a text file that contains the names of these files:
可以在一个try-with-resources语句中声明多个资源,这些资源将会以声明的顺序相反之顺序关闭, 比如下面的方法。
public static void writeToFileZipFileContents(String zipFileName, String outputFileName) throws java.io.IOException { java.nio.charset.Charset charset = java.nio.charset.Charset.forName("US-ASCII"); java.nio.file.Path outputFilePath = java.nio.file.Paths.get(outputFileName); // Open zip file and create output file with try-with-resources statement try ( java.util.zip.ZipFile zf = new java.util.zip.ZipFile(zipFileName); java.io.BufferedWriter writer = java.nio.file.Files.newBufferedWriter(outputFilePath, charset) ) { // Enumerate each entry for (java.util.Enumeration entries = zf.entries(); entries.hasMoreElements();) { // Get the entry name and write it to the output file String newLine = System.getProperty("line.separator"); String zipEntryName = ((java.util.zip.ZipEntry)entries.nextElement()).getName() + newLine; writer.write(zipEntryName, 0, zipEntryName.length()); } } }
In this example, thetry
-with-resources statement contains two declarations that are separated by a semicolon:ZipFile
andBufferedWriter
. When the block of code that directly follows it terminates, either normally or because of an exception, theclose
methods of theBufferedWriter
andZipFile
objects are automatically called in this order. Note that theclose
methods of resources are called in theoppositeorder of their creation.
The following example uses atry
-with-resources statement to automatically close ajava.sql.Statement
object:
public static void viewTable(Connection con) throws SQLException { String query = "select COF_NAME, SUP_ID, PRICE, SALES, TOTAL from COFFEES"; try (Statement stmt = con.createStatement()) { ResultSet rs = stmt.executeQuery(query); while (rs.next()) { String coffeeName = rs.getString("COF_NAME"); int supplierID = rs.getInt("SUP_ID"); float price = rs.getFloat("PRICE"); int sales = rs.getInt("SALES"); int total = rs.getInt("TOTAL"); System.out.println(coffeeName + ", " + supplierID + ", " + price + ", " + sales + ", " + total); } } catch (SQLException e) { JDBCTutorialUtilities.printSQLException(e); } }
The resourcejava.sql.Statement
used in this example is part of the JDBC 4.1 and later API.
Note: Atry
-with-resources statement can havecatch
andfinally
blocks just like an ordinarytry
statement. In atry
-with-resources statement, anycatch
orfinally
block is run after the resources declared have been closed.
注意:一个try-with-resources语句也能够有catch和finally子句。catch和finally子句将会在try-with-resources子句中打开的资源被关闭之后得到调用。
Suppressed Exceptions
An exception can be thrown from the block of code associated with thetry
-with-resources statement. In the examplewriteToFileZipFileContents
, an exception can be thrown from thetry
block, and up to two exceptions can be thrown from thetry
-with-resources statement when it tries to close theZipFile
andBufferedWriter
objects. If an exception is thrown from thetry
block and one or more exceptions are thrown from thetry
-with-resources statement, then those exceptions thrown from thetry
-with-resources statement are suppressed, and the exception thrown by the block is the one that is thrown by thewriteToFileZipFileContents
method. You can retrieve these suppressed exceptions by calling theThrowable.getSuppressed
method from the exception thrown by thetry
block.
注意:前面提到,如果try-with-resources语句中打开资源的Close方法和try代码块中都抛出了异常,Close 方法抛出的异常被抑制,try代码块中的异常会被抛出。
Java7之后,可以使用Throwable.getSuppressed方法获得被抑制的异常。
Classes That Implement the AutoCloseable or Closeable Interface
See the Javadoc of theAutoCloseable
andCloseable
interfaces for a list of classes that implement either of these interfaces. TheCloseable
interface extends theAutoCloseable
interface. Theclose
method of theCloseable
interface throws exceptions of typeIOException
while theclose
method of theAutoCloseable
interface throws exceptions of typeException
. Consequently, subclasses of theAutoCloseable
interface can override this behavior of theclose
method to throw specialized exceptions, such asIOException
, or no exception at all.
示例
a is closing...
java.io.IOException: throwing in construction
at learning.io.DummyClosable.<init>(DummyClosable.java:14)
at learning.io.DummyClosable.main(DummyClosable.java:28)
----end1----
a is closing...
java.io.IOException: in main2
at learning.io.DummyClosable.main(DummyClosable.java:37)
Suppressed: java.io.IOException: throwing in close
at learning.io.DummyClosable.close(DummyClosable.java:21)
at learning.io.DummyClosable.main(DummyClosable.java:38)
----end2----