以下のコード スニペットにより、このエラーが発生します。
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 パスに関する多くの記事を確認しましたが、問題を解決するものはありませんでした。問題が OS/X や Eclipse のインストールに固有のものかどうかを確認するために、Windows PC で試してみます。