当我从 jar 运行应用程序时,为什么 new File(path) 不起作用?
当我从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果正确创建了 jar,例如使用 Maven,则资源文件将位于类文件旁边。它看起来像这样:
您可以进入目录并访问
fileToRead
,如上面的结构所示:或按照建议
If jar created properly, say using Maven, the resources files goes next to class files. It looks something like this:
you can either walk up in directory and access
fileToRead
, like this for above structure:or as suggested
如果它已经在类路径中,你可以这样获取它:
If it is already in the classpath you can get it like this:
运行 eclipse 时,当前工作目录设置为项目目录。因此相对路径有效。由于文件也被压缩到 jar 中,因此最好使用 InputStream 而不是文件。
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.