我读了一个文件big.txt
来填充我的 HashMap。我已将文件与class
文件bin
夹中的文件放在一起。
但是,每当我想使用它时,它都会给出错误提示java.io.FileNotFoundException ( No such file or directory )
。
这是怎么回事?
public ClassName() throws IOException{
URL url = ClassName.class.getResource("big.txt");
File file = new File(url.getPath());
BufferedReader inp= new BufferedReader(new FileReader(file));
// some code
}
inp.close();
}
为什么会这样?请帮帮我!