在NetBeans上为Java应用程序创建安装程序

时间:2014-09-26 07:53:22

标签: java netbeans wix installer

最近我试图使用netbeans为我的java应用程序制作安装程序 但是当我点击PROJECT>包装AS>所有安装人员

JavaFX本机打包程序需要在PATH上安装并包含外部WiX 3.0+工具才能创建MSI安装程序。见http://wix.sourceforge.net/ BUILD FAILED(总时间:0秒)

我很确定我安装了这个WiX 3.0+工具,并且我还在环境变量上添加了它(我输入了命令candle.exe并获得了预期的结果......请帮助我。

谢谢,

1 个答案:

答案 0 :(得分:0)

我遇到了安装最新版本的WIX(3.9)和NetBeans 7.4的相同问题。

在我的情况下,这是由于nbproject文件夹中“jfx-impl.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>