如何使用 izpack 将我的 jar 应用程序制作为安装程序?
我下载并安装 izpack 来创建安装程序。但是没有快捷方式图标来运行它。任何人都可以告诉我如何运行 izpack 以及如何通过 izpack 创建安装程序。(我有 jar 文件)。
I download and install izpack to create installer.But There is no shortcut icon to run it.Can any one tell me how to run izpack and how to create installer through izpack.(I have the jar file).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你好
在下面的链接中,您将找到有关 izpack 安装程序的很好的帮助。
http://www.imrantariq.com/blog/?p=89
链接如下包含使用 izpack 制作安装程序的详细 pdf 文件。
http://www.imrantariq.com/blog/?attachment_id=112
为
伊姆兰 干杯塔里克
Hello
In the link below you will find a nice help about izpack installer.
http://www.imrantariq.com/blog/?p=89
Link below contains a detailed pdf to make installer with izpack.
http://www.imrantariq.com/blog/?attachment_id=112
cheers
Imran tariq
答案在于正确配置 project-install.xml 中的 shortcutSpec.xml。
将以下行放入project-install.xml 中。
现在将面板添加到面板集中。
ShortcutSpec.xml 应包含快捷方式的详细信息。
如果您希望使用 Windows 提供的图标,请更改以下属性
// x 可以是您选择的任何图标索引号
The answer lies in properly configuring the shortcutSpec.xml in project-install.xml.
Put the following lines in project-install.xml.
now add the panel in to the panel stack.
The shortcutSpec.xml shall contain the details of shortcut.
If you wish to use windows provided icons, change the following attributes
// x can be any icon index number of your choice
IzPack 使用命令提示符为任何 java 程序创建安装程序和卸载程序。要创建安装程序,请打开命令提示符并转到 IzPack 安装路径 ->垃圾桶。然后执行命令“compile install.xml”,这里你应该给出你的xml文件的完整路径地址。然后它会自动生成具有相同xml文件名的exe文件。
IzPack uses the command prompt to create installer and uninstaller for any java program. To create an installer open the command prompt and go to the IzPack installed path -> bin. Then execute the command "compile install.xml" here you should give the full path address of your xml file. Then it automatically generate the exe file with the same xml file name.