我有以下代码来读取文本文件。
public static void main(String[] args)
{
try
{
Scanner in = new Scanner(new FileReader("input.txt"));
while(in.hasNext())
{
System.out.println(in.next());
}
}
catch (FileNotFoundException ex)
{
Logger.getLogger(Main.class.getName()).log(Level.SEVERE, null, ex);
}
}
我的项目结构设置如下:
build/ directory contains class
dist/ directory contains the jar file
src/ directory contains source
input.txt the text file to read
如果我将我的文本文件input.txt
放入一个名为的目录中,该目录与,和 , 和test
的目录相同,那么应该在参数中添加什么以便我仍然可以找到该文件?build
dist
src
filereader