如何在 Eclipse 中将我的 QtJambi 项目导出到 .JAR 文件?
我正在使用 Eclipse,并且有一个 QtJambi 项目,我想将其导出为 .JAR 文件。我已经尝试了几次都没有成功。
它对我的 Swing 项目有用,但对于 QtJambi 项目,我不知道该怎么做。
以下是截图(也许可以帮助您了解我的情况):
谢谢你帮助我。
i am using Eclipse and i have a QtJambi project which i would like to export in a .JAR file. I have tryed several times it never worked.
It worked for me on a Swing project, but with a QtJambi project, I dont know how to do it.
Here are the screenshots (maybe it can help you to understand my situation):
Thanks for helping me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您没有在导出(第二页)上设置主类。因此,仅运行 java -jar qt.jar 是行不通的,因为它不知道要调用什么 main(String[]) 。
You didn't set a main class on the export (2nd page). So just running
java -jar qt.jar
isn't going to work since it has no clue whatmain(String[])
to invoke.