Java如何判断一个文件是否存在呢?
在一些文件操作中,我们首先需要检测文件的存在性,然后进行相应操作,那么Java中如何检查文件是否存在呢?下文将一一道来,如下所示:
实现思路:我们可借助
java.io.File
类的exists()
方法来检测文件是否存在,当文件存在时,则返回true
,否则返回false
例:Java检查文件是否存在
import java.io.File;
import java.io.IOException;
public class testClass{
public static void main(String[] args) {
File file = new File("D:/tmp/test.txt");
File notExist = new File("java265.txt");
try {
System.out.println(file.getCanonicalPath() + " 文件存在: "+file.exists());
System.out.println(notExist.getCanonicalPath() + " 文件存在: "+notExist.exists());
} catch (IOException e) {
e.printStackTrace();
}
}
}
注意事项:
注意参数中的文件路径的相对路径,绝对路径等信息
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。