元素“ fx:deploy”的前缀“ fx”未绑定

时间:2019-01-14 07:36:02

标签: java netbeans exe

我正在尝试在Java NetBeans中制作我的应用程序的EXE程序包 但是,当我单击“清理并生成……”时,此消息显示在build.xml中。 如何解决?

<project name="bra" default="default" basedir=".">
<description>Builds, tests, and runs the project bra.</description>
<import file="nbproject/build-impl.xml"/>
<target name="-post-jfx-deploy">
    <fx:deploy width="${javafx.run.width}" height="${javafx.run.height}" 
       nativeBundles="all"
       outdir="${basedir}/${dist.dir}" outfile="${application.title}">

        <fx:application name="${application.title}" 
              mainClass="${javafx.main.class}"/>
        <fx:resources>
            <fx:fileset dir="${basedir}/${dist.dir}" includes="*.jar"/>
            <fx:fileset dir="dist" includes="lib/*.jar"/>
        </fx:resources>
        <fx:info title="${application.title}"  vendor="${application.vendor}"/>
    </fx:deploy>          
 </target>
 </project>

1 个答案:

答案 0 :(得分:1)

最终完成.. !!  只需编辑此行:

<project name="bra" default="default" basedir="." xmlns:fx="javafx:com.sun.javafx.tools.ant">

定义 fx 名称空间