共计 391 个字符,预计需要花费 1 分钟才能阅读完成。
在 Java 中,可以使用 File
类的 exists()
方法来判断文件是否存在。以下是一个示例代码:
import java.io.File;
public class FileExistsExample {public static void main(String[] args) {
String filePath = "C:/example.txt";
File file = new File(filePath);
if (file.exists()) {System.out.println("文件存在");
} else {System.out.println("文件不存在");
}
}
}
在上面的示例中,我们创建了一个 File
对象,并通过调用 exists()
方法检查文件是否存在。如果文件存在,则输出 ” 文件存在 ”,否则输出 ” 文件不存在 ”。请确保将 filePath
变量设置为您要检查的文件的路径。
丸趣 TV 网 – 提供最优质的资源集合!
正文完