我正在使用 tomcat7 和 eclipse 处理我的第一个 struts2 项目。我需要将 txt 文件放在服务器上并从中读取数据。我尝试将文件放在源项目目录中并使用从文件中读取的标准 java
try {
File file = new File("hello.txt");
Scanner scanner = new Scanner(file);
while (scanner.hasNext()) {
System.out.println(scanner.next());
}
scanner.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
}
但这是行不通的。将文本文件放在哪里(如果可能,重启程序/tomcat后不得刷新),以及如何读取/写入它?请帮忙,这是一个很好的文件教程吗?