我使用izpack为我的应用程序创建安装程序。到目前为止,我能够创建安装程序,并在我的Linux机器上一切都很好。 问题是在Windows机器上我测试了它(Win7和WinXP),安装程序没有显示快捷方式面板。 我确实阅读了文档疑难解答部分,并注意我在安装程序中有本机。 快捷方式xml文件也是如此,它们位于资源路径中的安装程序中。 我还读到,很可能是一个区分大小写的拼写错误或类似的简单但无法解决的问题。 这是我的快捷方式xml:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This is the shortcut specification for windows. Its considered default so on
Systems that are not shortcut compatible the information is taken from here.
-->
<shortcuts>
<programGroup defaultName="SteamNet" location="applications"/>
<shortcut
name = "One Click Wonder"
target = "$INSTALL_PATH\oneclickwonder.bat"
commandLine = ""
workingDirectory= "$INSTALL_PATH"
description="Minimal Desktop Timer"
iconFile="$INSTALL_PATH\images\windows_icon.ico"
iconIndex="0"
initialState="noShow"
programGroup="yes"
desktop="yes"
applications="yes"
startMenu="yes"
startup="yes"/>
</shortcuts>
答案 0 :(得分:10)
我创建了这个(虚拟)安装文件,仅用于测试快捷方式面板:
<?xml version="1.0" encoding="iso-8859-1" standalone="yes" ?>
<installation version="1.0">
<info>
<appname>Test</appname>
<appversion>1</appversion>
</info>
<guiprefs width="600" height="480" resizable="no">
</guiprefs>
<locale>
<langpack iso3="eng"/>
</locale>
<panels>
<panel classname="ShortcutPanel"/>
</panels>
<packs>
<pack name="Test" required="yes">
<description>Description</description>
</pack>
</packs>
<resources>
<res src="shortcutSpec.xml" id="shortcutSpec.xml"/>
</resources>
<native type="izpack" name="ShellLink.dll"/>
</installation>
shortcutSpec.xml
在您的问题上显示完全相同的内容。
我在Ubuntu中使用IzPack 4.3.5构建它(左)并在Windows 7 64位(右)上进行测试。
快捷方式面板在这里和那里打开。
一步一步:
IzPack-install-4.3.5.jar
java -jar IzPack-install-4.3.5.jar
/usr/local/IzPack/bin/compile ./test.xml
java -jar test.jar
test.jar
,启动cmd
,设置path=C:\Program Files (x86)\Java\jdk1.6.0_26\bin
并执行java -jar test.jar
答案 1 :(得分:-2)
根据IzPack文档,您是否在安装程序中包含了所需的.dll文件? http://izpack.org/documentation/desktop-shortcuts.html
<native type="izpack" name="ShellLink.dll"/>