如何使用 Swing 通过 Java 桌面应用程序上的图标运行 JAR 文件?
我想使用 java swing(JinternalFrame、JDesktoppane...)从桌面应用程序中的图标执行 jar 文件(BORG 日历),但我不知道如何执行?
I want to execute a jar file (BORG Calendar) from an icon in a desktop application using java swing (JinternalFrame, JDesktoppane,...) But I dont know how?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Java Web Start 可以建议桌面图标和桌面图标。应用程序的菜单项。我建议两者都做,因为根据记忆,某些操作系统将不允许其中之一。
或者,JWS 可以在 javax.jnlp.IntegrationService。
JWS 可用于运行 Java 的平台,并受 Oracle 支持。
Java Web Start can suggest desktop icons & menu items for a application. I would recommend doing both, since from memory some OS' will disallow one or the other.
Alternately, JWS can leave the choice to the user, with the assistance of the javax.jnlp.IntegrationService.
JWS is available for platforms that run Java, and is supported by Oracle.
如果您想使用桌面上的图标运行应用程序,则必须将其导出为可执行 jar 文件。
这是如何从命令行执行此操作的教程: http://viralpatel.net/blogs/2008/12/create-jar-file-in-java-eclipse.html
我想您使用 IDE 进行编程,所以您应该在某个地方该选项导出为可执行 jar。
这就是我在 Eclipse 中执行此操作的方法:
然后找到带有播放图标的 jar 文件。
我认为这就是您所需要的。您可以选择单击“下一步”并配置更多选项。
注意:也许您的应用程序使用也应该添加的外部库或图像,不要忘记它们。
If you want to run your app using an icon in the desktop you have to export it as an executable jar file.
Here a tutorial how can you do it from the command line: http://viralpatel.net/blogs/2008/12/create-jar-file-in-java-eclipse.html
I suppose that you use an IDE for your programming, so you should have somewhere the option export as executable jar.
This is how i do it in eclipse:
Then find the jar file with the play icon.
I think that is all you need. You can optionally click on next and configure some more options.
Note: Maybe your app uses external libraries or images that also should be added, dont forget about them.
您需要将程序导出为 jar ,然后使用像 Lunch4j 这样的程序(如果您想为您的程序创建快捷方式)罐子。
you need to export your program as jar , then use a program like Lunch4j if you want to make a shortcut to your jar .