FileReader 找不到我的文本文件

新手上路,请多包涵

我有一个简单的文本文件,但由于某种原因找不到它。我没有发现代码有任何问题,因为我是从网站上获得的,而且我开始认为我没有将文本文件放在正确的位置。有什么建议吗?

代码:

 import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.IOException;
import java.util.ArrayList;
import java.nio.file.Path;
import java.nio.file.Paths;

public class MainFavorites {
    public static void main(String[] args) throws IOException {
        /**
        * finds pathway to the file
        */
        //      File file = new File("icecreamTopping.txt");
        //      System.out.println(file.getCanonicalPath());

        BufferedReader reader = null;
        ArrayList <String> myFileLines = new ArrayList <String>();
        try {
            String sCurrentLine;
            reader = new BufferedReader(new FileReader("icecreamTopping.txt"));
            while ((sCurrentLine = reader.readLine()) != null) {
                //System.out.println(sCurrentLine);
                myFileLines.add(sCurrentLine);
            }
        } catch (IOException e) {
            e.printStackTrace();
            System.out.print(e.getMessage());
        } finally {
            try {
                if (reader != null)reader.close();
            } catch (IOException ex) {
                System.out.println(ex.getMessage());
                ex.printStackTrace();
            }
        }
        int numElements = myFileLines.size();
        System.out.println ("there are n lines in the file:" + numElements);

        for (int counter = numElements-1; counter >= 0; counter--) {
            String mylineout = myFileLines.get(counter);
            System.out.println (mylineout);
        }
    }
}

文件内容:

 1- Blueberry
2- Banana Buzz
3- Cookie Batter

我的堆栈跟踪是这样的:

 java.io.FileNotFoundException: C:\Users\homar_000\workspace\RankFavorites\icecreamTopping.txt (The system cannot find the file specified)
at java.io.FileInputStream.open(Native Method) at java.io.FileInputStream.<init>(Unknown Source)
at java.io.FileInputStream.<init>(Unknown Source)
at java.io.FileReader.<init>(Unknown Source)
at MainFavorites.main(MainFavorites.java:28)

原文由 user2843235 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 1k
2 个回答

找出问题所在。我没有必要放文件扩展名,所以我删除了 .txt,因为当我保留它时,它读作“icecreamTopping.txt.txt”

原文由 user2843235 发布,翻译遵循 CC BY-SA 3.0 许可协议

替换下面一行

reader = new BufferedReader(new FileReader("icecreamTopping.txt"));

reader = new BufferedReader(new FileReader("resources/icecreamTopping.txt"));

并将文件放在与 src 文件夹平行的 resources 文件夹下。


示例代码:

从资源文件夹中读取文件 abc.txt

 reader = new BufferedReader(new FileReader("resources/abc.txt"));

这是项目结构

在此处输入图像描述


尝试下面的代码找出它指向文件 icecreamTopping.txt 的位置。

  File f=new File("icecreamTopping.txt");
 System.out.println(f.getAbsolutePath());

获得绝对路径后,将文件放在那里即可。


- 编辑 -

根据您最后的评论,将 icecreamTopping.txt 项目中的文件 RankFavorites 直接如下图所示,它一定会解决您的问题。

在此处输入图像描述

原文由 Braj 发布,翻译遵循 CC BY-SA 3.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
logo
Stack Overflow 翻译
子站问答
访问
宣传栏