最近我试图使用netbeans为我的java应用程序制作一个安装程序但当我单击项目>包装组件>所有安装程序时
JavaFX本机打包程序需要安装并包含在PATH上的外部WiX 3.0+工具来创建MSI安装程序。看见http://wix.sourceforge.net/构建失败(总时间:0秒)
我很确定我已经安装了这个WiX 3.0+工具,我也在环境变量上添加了它(我键入命令candle.exe,得到了预期的结果…请帮助我。
谢谢,
我在安装最新版本的WIX(3.9)和NetBeans 7.4时也遇到过同样的问题。
在我的案例中,这是由于nbproject文件夹中的文件"jfximpl.xml"中存在字符串比较问题。你要做的是编辑这个文件(点击NetBeans输出控制台中错误消息提供的链接),并将目标"-check WiX presence"更改为:
<target name="-check-WiX-presence" depends="-check-native-bundling-type" if="need.WiX.presence">
<local name="exec-output"/>
<local name="exec-error"/>
<local name="exec-result"/>
<exec executable="candle" outputproperty="exec-output" failifexecutionfails="false" errorproperty="exec-error" resultproperty="exec-result">
<arg value="-?"/>
</exec>
<echo message="exec-output:${exec-output}" level="verbose"/>
<echo message="exec-error:${exec-error}" level="verbose"/>
<echo message="exec-result:${exec-result}" level="verbose"/>
<condition property="missing.WiX">
<not><and>
<contains string="${exec-output}" substring="Windows Installer XML" casesensitive="false"/>
<not><contains string="${exec-output}" substring="Windows Installer Xml Compiler version 1"/></not>
<not><contains string="${exec-output}" substring="Windows Installer Xml Compiler version 2"/></not>
</and></not>
</condition>
</target>