标签:div close fileinput stat string 为什么 code NPU while
public static void main(String[] args) throws IOException { try( FileInputStream fis = new FileInputStream("xxx.txt"); FileOutputStream fos = new FileOutputStream("yyy.txt"); ){ int b; while ((b = fis.read()) != -1){ fos.write(b); } } }
try(...){...}
为什么可以呢?
因为IO流的类实现了AutoCloseable接口。
标签:div close fileinput stat string 为什么 code NPU while
原文地址:https://www.cnblogs.com/chichung/p/10261655.html