java判断文件是否在磁盘中存在
时间: 2023-12-09 09:03:24 浏览: 112
Java判断文件是否存在
在Java中,我们可以使用`java.io.File`类来判断文件是否存在。可以使用该类的`exists()`方法来检查文件是否存在。以下是示例代码:
```java
import java.io.File;
public class FileExistenceChecker {
public static void main(String[] args) {
String filePath = "C:\\Users\\username\\Desktop\\example.txt";
File file = new File(filePath);
if(file.exists()) {
System.out.println("File exists in the disk!");
} else {
System.out.println("File does not exist in the disk!");
}
}
}
```
在上面的代码中,我们首先创建一个`File`对象,然后使用`exists()`方法来检查文件是否存在。如果文件存在,则打印消息“File exists in the disk!”,否则打印消息“File does not exist in the disk!”。请注意,文件路径中使用的反斜杠字符“\”需要用双反斜杠“\\”来转义。
阅读全文