使用Java中的Try-With-Resource
##簡介
在Java SE7中引入了try-with-resources語句,它在try中聲明一個或多個資源的 try 語句。一個資源作為一個對象,必須在程序結束之后隨之關閉。
使用 try-with-resources語句確保在語句的最后每個資源都被關閉 。
任何實現了 java.lang.AutoCloseable的對象, 包括所有實現了 java.io.Closeable 的對象, 都可以用作一個資源。
示例
下面的例子讀取文件的第一行。它使用了 BufferedReader 的一個實例來讀取文件中的數據。BufferedReader 是一個資源,它必須在程序結束之后隨之關閉:
static String readFirstLineFromFile(String path) throws IOException {try (BufferedReader br = new BufferedReader(new FileReader(path))) {return br.readLine();}}在這個例子中, try-with-resources 語句聲明的資源是一個 BufferedReader。聲明語句在緊跟在 try 關鍵字的括號里面。Java SE 7以及后續版本中,BufferedReader類實現了java.lang.AutoCloseable接口。 因為 BufferedReader 實例是在 try-with-resource 語句中聲明的, 所以不管 try 語句正常地完成或是 發生意外 (結果就是 BufferedReader.readLine 方法拋出IOException),BufferedReader都將會關閉。
在 Java SE 7之前, 可以使用 finally 塊來確保資源被關閉,不管 try 語句正常地完成或是發生意外。下面的例子使用 finally 塊替換 try-with-resources 語句:
static String readFirstLineFromFileWithFinallyBlock(String path) throws IOException {BufferedReader br = new BufferedReader(new FileReader(path));try {return br.readLine();} finally {if (br != null) br.close();}}然而,在這個例子中,如果 readLine 和 close 方法均拋出異常,那么 readFirstLineFromFileWithFinallyBlock 方法將拋出從 finally 塊中拋出的異常; try 塊中拋出的異常被抑制了。與此相反, 在 readFirstLineFromFile 這個例子中, 如果 try 塊和 try-with-resources 語句均拋出異常, 那么 readFirstLineFromFile 將拋出從 try 塊中拋出的異常; try-with-resources 塊拋出的異常被抑制了。
在Java SE 7 以及后續的版本中, 你可以檢索被抑制的異常;
可以在一個 try-with-resources 語句中聲明一個或多個資源。下面的例子檢索zip文件 zipFileName 中所有文件的名稱并創建一個包含那些文件名稱的文本文件:
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 statementtry (java.util.zip.ZipFile zf = new java.util.zip.ZipFile(zipFileName);java.io.BufferedWriter writer = java.nio.file.Files.newBufferedWriter(outputFilePath, charset)) {// Enumerate each entryfor (java.util.Enumeration entries = zf.entries(); entries.hasMoreElements();) {// Get the entry name and write it to the output fileString newLine = System.getProperty("line.separator");String zipEntryName = ((java.util.zip.ZipEntry)entries.nextElement()).getName() + newLine;writer.write(zipEntryName, 0, zipEntryName.length());}}}在這個例子中, try-with-resources 語句包含兩個由分號隔開的聲明: ZipFile 和 BufferedWriter。當代碼塊直接伴隨著它正常地或由于一個異常終止時, BufferedWriter 和 ZipFile 對象的 close 方法以這種順序自動地調用 。**注意:資源的 close 方法調用順序與它們的創建順序相反.**下面的例子使用一個 try-with-resources 語句來自動關閉一個 java.sql.Statement 對象: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);}}這個例子中使用的 java.sql.Statement 這個資源是JDBC 4.1以及后續版本API的一部分。
注意: 一個 try-with-resources 語句可以像普通的 try 語句那樣有 catch 和 finally 塊。在try-with-resources 語句中, 任意的 catch 或者 finally 塊都是在聲明的資源被關閉以后才運行。
被抑制的異常
與 try-with-resources 語句關聯的代碼塊可能會拋出異常。在 writeToFileZipFileContents這個例子中, 當試圖關閉 ZipFile 和 BufferedWriter 對象時,try 塊可能會拋出一個異常,并且 try-with-resources 語句可能拋出多達兩個異常 。如果 try 塊拋出異常并且 try-with-resources 語句拋出一個或多個異常,那么從 try-with-resources 語句中拋出的異常將會被抑制, 并且塊拋出的異常是由 writeToFileZipFileContents 方法拋出的那一個。你可以通過調用由 try塊拋出的異常的Throwable.getSuppressed 方法檢索這些被抑制的異常信息。
實現了AutoCloseable 或 Closeable 接口的類
參見 AutoCloseable 和 Closeable 接口的Javadoc可以看到實現了兩者當中的任何一個接口的類集。Closeable 接口繼承了 AutoCloseable 接口。 Closeable接口的 close 方法拋出IOException 類型的異常而 AutoCloseable 接口的 close 方法拋出 Exception 類型的異常。因此, subclasses of the AutoCloseable 接口的子類可以重寫 close 方法的這個行為來拋出指定的異常,例如 IOException, 或者沒有異常。
總結
以上是生活随笔為你收集整理的使用Java中的Try-With-Resource的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 小米手环3怎么升级(小米官方售后服务)
- 下一篇: 小太阳和空调哪个更费电