使用附带的外部工具运行 Java jar 文件

发布于 2025-01-08 09:09:51 字数 276 浏览 1 评论 0原文

在 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 技术交流群。

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

发布评论

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

评论(2

━╋う一瞬間旳綻放 2025-01-15 09:09:51

要解决静态问题,您可以使用 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.

红玫瑰 2025-01-15 09:09:51

尝试

Foo.class.getResource("...");

Try

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