import java.io.File;
public class fileUtils {
/**
* 判断文件是否为空的
* @param file
* @return
*/
public boolean fileIsEmpty(File file) {
//File file = new File("D:\\test.txt");
if (!file.exists() || file.length() == 0) {
//System.out.println("文件为空!");
return true;
} else {
//System.out.println("文件不为空!");
return false;
}
}
}
判断文件是否为空的
最新推荐文章于 2024-07-16 04:58:33 发布