0

我使用JavaFX部署任务创建了一个独立的应用程序,即<fx:deploy>. 我从命令提示符运行此应用程序并传递参数。它应该在命令提示符下运行,但 UI 会打开。当我使用

  java -jar app.jar -action:backup

它在命令提示符下运行。

<target name="exe" depends="SignedJar">
        <fx:deploy width="800" height="600" nativeBundles="all" outdir="${dist}/winx86" outfile="${app.name}" verbose="true">
                <fx:info title="${app.title}"/>
                <fx:application name="${app.title}" mainClass="${main.class} toolkit=swing"/>
                        <fx:resources>
                            <fx:fileset file="${app.name}.jar"/>
                            <fx:fileset dir="${WorkingFolder}/temp"/>
                </fx:resources>
                <fx:platform>
                        <fx:jvmarg value="-Xms500m"/>
                    <fx:jvmarg value="-Xmx1g"/>
                    <fx:jvmarg value="-XX:NewRatio=2"/>
                        <fx:jvmarg value="-XX:MaxPermSize=250m"/>
                </fx:platform>

        </fx:deploy>
    </target>

我还需要指定什么<fx:deploy>以便将命令行参数传递给应用程序 jar?

4

0 回答 0