索引
/
test.txt
待读取的内容
hello.
/
读取 test.txt 内容
package example; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; public class GeneralTry { public static void main(String[] args) { FileInputStream inputStream = null; try { inputStream = new FileInputStream("d:/labs/test.txt"); System.out.println((char) inputStream.read()); // 输出读到第一个字符,至于会不会与txt文本内容对应还与txt本身的字符编码相关。 } catch (FileNotFoundException e) { // 捕获异常是强制性的,对应 new FileInputStream... e.printStackTrace(); } catch (IOException e) { // 捕获异常是强制性的,对应 inputStream.read .. e.printStackTrace(); } finally { // 关闭资源是非强制性的,但是我们应该总是这么做 try { inputStream.close(); if (inputStream != null) { // inputStream 有可能为空,为了防止出现空指针而导致程序gg .. inputStream.close(); } } catch (IOException e) { e.printStackTrace(); } } System.out.println("如果在输出窗看到这句话,说明程序没有gg"); } } /* output= h 如果在输出窗看到这句话,说明程序没有gg */
/
同样是读取 test.txt 内容
package example; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; public class ResourceTry { public static void main(String[] args) { try (FileInputStream inputStream = new FileInputStream("d:/labs/test.txt")) { System.out.println((char) inputStream.read()); // 输出读到第一个字符,至于会不会与txt文本内容对应还与txt本身的字符编码相关。 } catch (FileNotFoundException e) { // 捕获异常仍然是强制的 e.printStackTrace(); } catch (IOException e) { // 捕获异常仍然是强制的 e.printStackTrace(); } // try 块退出时,会自动调用 inputStream.close() System.out.println("如果在输出窗看到这句话,说明程序没有gg"); } } /* output= h 如果在输出窗看到这句话,说明程序没有gg */
/
上述程序(带资源的 try程序)是在正常情况下(test.txt 文件存在)运行的,那么倘若 test.txt 不存在呢?尝试把 test.txt 改成一个不存在的 test2.txt 运行带资源的 try 测试程序输出结果如下:
/* output= 如果在输出窗看到这句话,说明程序没有gg java.io.FileNotFoundException: d:labs est2.txt (系统找不到指定的文件。) at java.io.FileInputStream.open0(Native Method) at java.io.FileInputStream.open(FileInputStream.java:195) at java.io.FileInputStream.<init>(FileInputStream.java:138) at java.io.FileInputStream.<init>(FileInputStream.java:93) at example.ResourceTry.main(ResourceTry.java:10) */
如果第一个程序(普通 try)没有在 inputStream.close() 之前进行非空检查,程序将会因为 java.lang.NullPointerException 而中止(也就是gg)。
就像上面看到的,带资源的 try 测试程序同样可以正常向下执行,所以,带资源的 try 在调用 close() 前是有进行非空判断的,这样就确保了程序正常执行而不抛出 NullPointerException,需要注意的是,除了空指针异常不会发生, close() 抛出的其它异常需要另当别论!
/
Try-With Resource when AutoCloseable is null
Possible null pointer exception on autocloseable idiom
The try-with-resources Statement - java tutorials - oracle
Java language specification - 14.20.3
oracle blog - Project Coin:try-with-resources on a null resource
再补充几个:
Exception coming out of close() in try-with-resource