我使用eclipse,並在正確的目錄(src文件夾)中有我的文本文件。我只想讀取文件並計算其中的所有單詞。出於某種原因,我得到一個文件未找到異常被拋出。Eclipse未找到文件?
這是我的代碼。
import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;
public class Tester {
public static int getSizeOfDictionary(File dictionary)
throws FileNotFoundException {
int count = 0;
Scanner reader = new Scanner(dictionary);
while (reader.hasNextLine()) {
reader.nextLine();
count++;
}
reader.close();
return count;
}
public static void main(String[] args) throws FileNotFoundException {
File test = new File("words.txt");
System.out.println(getSizeOfDictionary(test));
}
}
當我嘗試時,我得到一個錯誤,說我的測試類沒有getResourceAsFile方法。 – LeatherFace
對不起,拼寫它我們爲你。請現在嘗試。 – Thom
注意:OP:你可以忽略'this'只是爲了getClass()。getResourceAsFile(...)'':)' – sircapsalot