找不到BufferedReader文件

时间:2014-03-12 05:32:47

标签: java eclipse file ubuntu

这是我的代码段:

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,这很重要。

2 个答案:

答案 0 :(得分:0)

如果您正在运行eclipse并拥有一个java项目,那么只需将该文件放入项目即可。

答案 1 :(得分:0)

将文件放在项目文件夹的根目录下。如果您的项目根目录是FileReader,那么将文件放入其中