您好,登錄后才能下訂單哦!
這篇文章主要介紹怎么關閉java文本、網絡等資源,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
通常在 java 中對文本、網絡資源等操作起來是很繁雜的,要聲明,讀取,關閉三個階段,還得考慮異常情況。假設我們要讀取一段文本顯示到控制臺,通常會有如下的代碼:
public static void main(String[] args) { FileInputStream inputStream = null; try { inputStream = new FileInputStream("./pom.xml"); InputStreamReader inputStreamReader = new InputStreamReader(inputStream, "utf-8"); BufferedReader reader = new BufferedReader(inputStreamReader); String str; while ((str = reader.readLine()) != null) { System.out.println(str); } } catch (Exception e) { e.printStackTrace(); } finally { if (inputStream != null) { try { inputStream.close(); } catch (Exception e) { } } } }
在 finally 的關閉代碼中,還要再來一個 try/catch,看著是不是很難受,很不優雅,很想干掉這個 finally!
自從 java7 以來這個問題已經有比較好的解決辦法了,那就是try-with-resource,可能是 jdk 開發人員也覺得之前的關閉資源寫法太反人類,所以做了這樣的一個語法糖。注意這并不是什么新特性,只是一個語法糖,簡化代碼的。如果你反編譯代碼后會發現還是 try/catch/finally 的傳統寫法。
try-with-resource 用法如下:
try (FileInputStream inputStream = new FileInputStream("./pom.xml")) { BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream, "utf-8")); String str; while ((str = reader.readLine()) != null) { System.out.println(str); } } catch (Exception e) { e.printStackTrace(); }
無需在 finally 中手動關閉 inputStream,凡是實現了 AutoCloseable 接口的,且在 try 后面的括號中創建的,都會在 try/catch 執行完畢后確保調用 close 方法。這么寫是不是優雅多了??
以上是“怎么關閉java文本、網絡等資源”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。