我正在創建一個小程序,它將讀取一個文本文件,其中包含大量隨機生成的數字,並生成統計數據,如平均值,中位數和模式。我創建了該文本文件,並確保該名稱與新文件聲明時完全相同。獲取FileNotFoundException即使文件存在並且拼寫正確
是的,該文件與類文件位於相同的文件夾中。
public class GradeStats {
public static void main(String[] args){
ListCreator lc = new ListCreator(); //create ListCreator object
lc.getGrades(); //start the grade listing process
try{
File gradeList = new File("C:/Users/Casi/IdeaProjects/GradeStats/GradeList");
FileReader fr = new FileReader(gradeList);
BufferedReader bf = new BufferedReader(fr);
String line;
while ((line = bf.readLine()) != null){
System.out.println(line);
}
bf.close();
}catch(Exception ex){
ex.printStackTrace();
}
}
}
錯誤路線如下:
java.io.FileNotFoundException: GradeList.txt (The system cannot find the file specified)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.<init>(FileInputStream.java:138)
at java.io.FileReader.<init>(FileReader.java:72)
at ListCreator.getGrades(ListCreator.java:17)
at GradeStats.main(GradeStats.java:11)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:601)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:120)
請您提供關於IDE的信息和目錄結構嗎? – nhahtdh
IDE是Intellij IDEA,目錄結構是包含文本文件的GradeStats-> src,以及包含此處顯示的其他3個類。 – cmcdaniels
該文件可能與類文件位於同一目錄中,但通常不是當前目錄。嘗試做一個system.out.println(GradeList.getAbsolutePath()) – MTilsted