下面的代码片段会导致此错误:
Exception in thread "main" java.lang.Error: Unresolved compilation problem: Unhandled exception type FileNotFoundException
String path = "/Users/jfaig/Documents/workspace/my_array/";
BufferedReader in = new BufferedReader(new FileReader(path + "Matrix.txt"));
该路径是有效的,因为我可以看到使用以下代码列出的文件:
File dir = new File(path);
String[] chld = dir.list();
if(chld == null){
System.out.println("Specified directory does not exist or is not a directory.");
System.exit(0);
} else {
for(int i = 0; i < chld.length; i++){
String fileName = chld[i];
System.out.println(fileName);
}
}
我查看了许多关于 Java 中 OS/X 路径的文章,但没有一篇能解决我的问题。我将在 Windows PC 上尝试一下,看看问题是否特定于 OS/X 和/或我安装的 Eclipse。