当我尝试从文件中读取时出现此异常:
ERROR:
Exception in thread "main" java.io.FileNotFoundException: newfile.txt (No such file or directory)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.<init>(FileInputStream.java:138)
at java.util.Scanner.<init>(Scanner.java:611)
at Postal.main(Postal.java:19)
import java.util.Scanner;
import java.io.*;
public class Postal {
public static void main(String[] args) throws Exception {
/*** Local Variables ***/
String line;
Scanner filescan;
File file = new File("newfile.txt");
filescan = new Scanner(file);
userInfo book = new userInfo();
/*** Loop through newfile.txt ***/
while (filescan.hasNext()) {
line = filescan.nextLine();
book.addNew(line);
}
book.print(0);
}
}
答案 0 :(得分:0)
班级Scanner
使用FileInputStream
来阅读文件内容。
但它无法找到该文件,因此抛出异常。
您正在使用文件的相对路径,尝试绝对路径。
答案 1 :(得分:0)
请改用:
File file = new File(getClass().getResource("newfile.txt"));
答案 2 :(得分:-1)
提供您要创建文件的位置的绝对路径。并检查该用户是否有权在那里创建文件。找到路径的一种方法是:
File f = new File("NewFile.txt");
if (!f.exists()) {
throw new FileNotFoundException("Failed to find file: " +
f.getAbsolutePath());
}
试试这个打开文件:
File f = new File("/path-to-file/NewFile.txt");