Linux java 包装器和安装程序
我有一个java应用程序,我想为所有平台发布它。我尝试了大多数安装程序和包装器,例如 install4j 、 launch4j 、 Excelsior JET 和...
我在高级安装程序中找到了适用于 Windows 和 Mac 的最佳解决方案。它为 Windows 和 Mac 构建了一个本机启动器和安装程序。如果 jre 不存在,它还可以从自定义源下载 jre 并安装它。
所以我正在寻找类似的具有以下功能的Linux
:。包装java
。如果自定义源中不存在,请下载 jre
。制作图形用户界面安装程序
I have a java app that i want to release it for all of platforms. i tried most of installers and wrapper like install4j , launch4j , Excelsior JET and ...
I found best solution for windows and mac in Advanced Installer. it build a native launcher and installer for windows and mac. also it can download jre from custom source and install it if jre not present.
so im looking for similar one for linux with this features:
. wrap java
. download jre if not present from custom source
. make gui installer
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看看 IzPack,尤其是 其功能。
来源 https://github.com/izpack/izpack
Have a look at IzPack, especially its features.
Sources at https://github.com/izpack/izpack
(免责声明,我是InstallBuilder的作者)InstallBuilder可以为Linux、Windows和Mac创建启动器,并且可以创建GUI安装程序。但是,如果 JRE 不存在,则无法下载。
(Disclaimer, I am the author of InstallBuilder) InstallBuilder can create launchers for Linux, Windows and Mac and can create a GUI installer. However, it cannot download the JRE if not present.