我的 netbeans“/build/classes”目录中有一个 .txt 文件(“file.txt”)。
在同一目录中有为以下代码编译的 .class 文件:
try {
File f = new File("file.txt");
Scanner sc = new Scanner(f);
}
catch (IOException e) {
System.out.println(e);
}
调试代码(“Scanner sc ..”中的断点)会启动异常并打印以下内容:
java.io.FileNotFoundException: file.txt(系统找不到指定文件)
我也尝试使用“/file.txt”和“//file.txt”,但结果相同。
提前感谢您的任何提示