我正在 netbeans 中处理简单的 Web 应用程序,我得到 FileNotFound 异常。我已将文件存储在类路径中,因此我需要使用相对路径,当我尝试使用绝对路径时,它对我来说工作正常。
下图显示了我的文件系统层次结构。
我需要在文件 DBList.txt 中写入内容数据。
我的代码是,
File file = new File("data/application/DBList.txt");
PrintWriter writer = new PrintWriter(new BufferedWriter(new FileWriter(file)));
我搜索了很多,但没有得到使用相对路径读取文件的解决方案。