try-with-resources
为什么要介绍这个了
看看一下以下代码:
public static void fileCopyByTryWithResources(File src, File des) throws IOException {
try (FileInputStream fis = new FileInputStream(src); FileOutputStream fos = new FileOutputStream(des);) {
byte[] buffer = new byte[1024];
int len = -1;
while ((len = fis.read(buffer)) != -1) {
fos.write(buffer, 0, len);
}
}
}
在不了解try-with-resources的情况下,有没有人会认为资源没有进行关闭了?那么看看原来try-cache-finally复制文件的写法是怎样的
try-cache-finally复制文件写法
package demo;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
public class FileCopyUtils {
/**
* try-cache-finally复制文件写法
*
* @param src
* @param des
* @return void
* @author Anna.
* @date 2024/4/5 18:34
*/
public static void fileCopy(File src, File des) throws IOException {
FileInputStream fis =