1. 程式人生 > >Java 資源的釋放方法

Java 資源的釋放方法

tro jdk1 except red cat dwr strong 釋放 exce

close()放在finally塊中


PrintWriter out = null;
try {
    out = new PrintWriter(
        new BufferedWriter(
        new FileWriter("out.txt", true)));
    out.println("the text");
} catch (IOException e) {
    e.printStackTrace();
} finally {
    if (out != null) {
        out.close();
    }

這種方式在JDK1.7之前,推薦使用這種方式,但是,這種方式還是有問題,因為,在try塊和finally塊中可能都會發生Exception。

使用try-with-resource語句


try (PrintWriter out2 = new PrintWriter(
            new BufferedWriter(
            new FileWriter("out.txt", true)))) {
    out2.println("the text");
} catch (IOException e) {
    e.printStackTrace();
}

推薦jdk版本在1.7以上。

關於 try-with-resource 的解釋一個很好的文章:https://www.cnblogs.com/itZhy/p/7636615.html

Java 資源的釋放方法