三天我试图弄清楚如何使用相对文件路径读取文件。在 Eclipse 中,它可以编译并且效果很好,但是当我导出 app. 它说它找不到文件。这是我正在处理的屏幕截图和代码。
此代码有效,但仅在 Eclipse 中,它可以编译并完美地完成工作。但是当我将它导出为可运行的 jar 文件时,我得到一个错误,它无法找到 licenca.txt
BufferedReader in = new BufferedReader(new FileReader(new File("licenca.txt").getPath()));
String str;
while ((str = in.readLine()) != null) {
taLicenca.append(str + "\n");
}
这是我的项目文件的屏幕截图
我尝试过使用扫描仪功能,结果还是一样,它在 Eclipse 中有效,但在导出时无效。这是错误消息: