导出并运行 jar
我希望导出一个相当大的 jar - 它有许多来自 eclipse 的依赖项。 我还应该提到我的类路径与我的构建路径不同,并且在导出时我希望导出类路径文件以及使用正确的“运行配置”导出它。
所以可能会问: 1. 如何使用我的 jar 导出类路径 jar?我应该用类路径替换构建路径条目吗? 2.有什么快速的方法可以完成这个任务吗? 3. 当我运行生成的 jar 时 - 我应该运行它“java -jar myJar.jar”吗?或者我是否还需要指定一个“-classpath ...”以将其引用到其他罐子? (注意:在 Eclipse 上我使用 - 导出所有 jar 选项+我选择运行时配置,在最终结果中我可以看到包含信息的清单文件)。
帮助将不胜感激。
I wish to export a rather big jar - which has many dependencies from eclipse.
I should also mention that my classpath differs from my buildpath, and on export I would like the classpath files to be exported as well as exporting it with the proper "Running configuration".
So may questions:
1. How can I export the classpath jars with my jar? Should I replace the builfpath entries with the classpath's?
2. Any quick way to get this done?
3. When I run the resulting jar - should I just run it "java -jar myJar.jar"? Or do I need to specify a "-classpath ..." as well to reference it to the other jars? (Note: on eclipse I am using - the export all jars option + I choose the runtime configuration and at the end result I can see a manifest file containg information).
Help would be greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在 Eclipse 中导出为 Runnable Jar。然后运行为
You export as a Runnable Jar in Eclipse. and then run as