当我从 jar 运行应用程序时,为什么 new File(path) 不起作用?

发布于 2025-01-05 08:04:02 字数 229 浏览 0 评论 0原文

当我从 jar 运行应用程序时,为什么 new File(path) 不起作用?我应该如何改变这个?现在,当我的应用程序尝试加载文件时,我收到 FileNotFound 异常。

final File file = new File("src/main/resources/maps/ParcelsCountyRDMFinal5.shp");

Why does new File(path) doesn't work when I run my application from jar? How should I change this? Now I'm receiving FileNotFound Exception when my application tries to load a file.

final File file = new File("src/main/resources/maps/ParcelsCountyRDMFinal5.shp");

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

月下凄凉 2025-01-12 08:04:02

如果正确创建了 jar,例如使用 Maven,则资源文件将位于类文件旁边。它看起来像这样:

myapp.jar
 |
 +--- com
 |     +---mycompany
 |            +-- FileOpsClass
 |
 +--- maps
        +-- fileToRead

您可以进入目录并访问 fileToRead,如上面的结构所示​​:

  final File file = new File("../../maps/ParcelsCountyRDMFinal5.shp");

或按照建议

  final File file = new File(getClass().getResource("/maps/ParcelsCountyRDMFinal5.shp"));

If jar created properly, say using Maven, the resources files goes next to class files. It looks something like this:

myapp.jar
 |
 +--- com
 |     +---mycompany
 |            +-- FileOpsClass
 |
 +--- maps
        +-- fileToRead

you can either walk up in directory and access fileToRead, like this for above structure:

  final File file = new File("../../maps/ParcelsCountyRDMFinal5.shp");

or as suggested

  final File file = new File(getClass().getResource("/maps/ParcelsCountyRDMFinal5.shp"));
抱猫软卧 2025-01-12 08:04:02

如果它已经在类路径中,你可以这样获取它:

File file = new File(getClass().getResource("Relative_Path_From_This_Class_To_YourFileName").getPath());

If it is already in the classpath you can get it like this:

File file = new File(getClass().getResource("Relative_Path_From_This_Class_To_YourFileName").getPath());
能怎样 2025-01-12 08:04:02

运行 eclipse 时,当前工作目录设置为项目目录。因此相对路径有效。由于文件也被压缩到 jar 中,因此最好使用 InputStream 而不是文件。

InputStream in = this.getClass().getResourceAsStream("/resources/maps/ParcelsCountyRDMFinal5.shp");

When running eclipse the current working directory is set to the project directory. Hence the relative path works. As the file is zipped into the jar too, better use an InputStream instead of a file.

InputStream in = this.getClass().getResourceAsStream("/resources/maps/ParcelsCountyRDMFinal5.shp");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文