/* author by w3cschool.cc main.java */import java.io.file;public class main { public static void main(string[] args) { file file = new file("c:/java.txt"); system.out.println(file.exists()); }}
以上代码运行输出结果为(如果你的 c 盘中存在文件 java.txt):
true
以上就是java 实例 - 检测文件是否存在的内容。
