public void loadFile(int level){
try {
//Create new file
levelFile = new File("assets/levels.txt");
fis = new FileInputStream(levelFile);
isr = new InputStreamReader(fis);
reader = new BufferedReader(isr);
//Code to read the file goes here
但是,使用此代码时,我不断收到上述错误(java.io.FileNotFoundException
)。
该文件肯定存在于我的资产文件夹中并且具有正确的名称。我在这里发现了几个类似的问题,并尝试了各种方法,包括刷新项目、清理项目、使用"levels.txt"
而不是,"assets/levels.txt"
但我不断收到此错误。
任何想法为什么?