使用附带的外部工具运行 Java jar 文件
在 eclipse 中,我有一个 java 项目,它从 main 方法运行外部程序(a .exe)。该程序位于项目 rot 下的 ext 文件夹中,与源文件夹处于同一级别。现在,当我从 Eclipse 运行这个程序时,它就像魅力一样工作。但是当我导出 jar 文件时,却没有。我最终得到了一个包含 ext 文件夹的 jar 文件,但我仍然得到 FileNotFoundException。 我确实考虑过使用 getClass.getResource('path'),但我无法从静态 main 方法中使用它。
有什么想法吗?
In eclipse I have a java project that runs an external program (a .exe) from the main method. This program is in a folder ext under the rot of the project on the same level as the source folder. Now when I run this program from Eclipse it works Like a charm. But when I export a jar file, it does not. I end up with a jar file that does contain the ext folder, but I still get a FileNotFoundException.
I did think of using getClass.getResource('path'), but I can't use this from the static main method.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要解决静态问题,您可以使用 ClassLoader.getSystemClassLoader().getResource('path')
这可能会也可能不会起作用,具体取决于您启动 .exe 的方式(它现在实际上没有文件路径,因为它在 .jar 里面,我猜它不会) - 在 .jar 里面有 .exe 对我来说似乎很奇怪。为什么不将其保留在 .jar 之外,并使用配置参数指定其位置?这会更有意义。
To get around the static issue, you can use ClassLoader.getSystemClassLoader().getResource('path')
This may or may not work depending on how you are launching your .exe (it doesn't really have a file path now, since it is inside the .jar, and I'm guessing it won't) - having a .exe inside a .jar seems odd to me. Why not leave it outside the .jar, and specify its location with a configuration parameter? This would make much more sense.
尝试
Try