判断文件是否存在 iava
时间: 2023-07-31 11:12:25 浏览: 86
检查文件是否存在
在 Java 中,可以使用 `java.io.File` 类的 `exists()` 方法来判断文件是否存在。具体示例如下:
```java
import java.io.File;
public class FileExistenceCheck {
public static void main(String[] args) {
File file = new File("path/to/file");
if (file.exists()) {
System.out.println("File exists!");
} else {
System.out.println("File does not exist!");
}
}
}
```
其中,`path/to/file` 是待检查的文件路径。如果文件存在,则输出 `File exists!`;否则,输出 `File does not exist!`。
阅读全文