我的代码片段:
static String filepath = "test.txt";
public static void main(String[] args) throws IOException {
try{
BufferedReader reader = new BufferedReader(new FileReader(filepath));
String l = reader.readLine();
System.out.println(l);
}catch (FileNotFoundException e){
System.out.println(e);
}
catch(IOException e){
System.out.println(e);
}
java.io.FileNotFoundException: test.txt (No such file or directory)
这是我得到的例外。
我应该使用什么文件路径?我把文本文件放在bin
文件夹中。
我在Ubuntu上运行Eclipse,这很重要。
如果您正在运行eclipse并且有一个java项目,那么只需将该文件放入项目中,它就会工作。
将文件放在项目文件夹的根目录下。如果您的项目根目录是FileReader
,那么将文件放入