JavaFX应用程序没有从命令行运行/如何正确构建和导出?

时间:2014-09-09 13:22:45

标签: java eclipse ant jar javafx-8

我做了很多小时的阅读,但找不到任何针对此SPECIFIC问题的帖子。

我使用Scenebuilder 2.0和Eclipse Luna构建了一个基本的JavaFX应用程序。 它由一个主类,一个空的css和一个原始的控制器类组成,它现在可以为一个按钮执行操作。

应用程序已导出到jar,应该在安装了JRE 1.6的Linux / Suse下运行,可能是Windows 1.7。

在开发PC上我安装了JRE 1.8和JDK 1.7。该应用程序在Linunx系统上导出为JRE 1.6。

我做了一个Jar,想通过输入来启动应用程序  java -jar <pathToMyApp/jarname.jar>

“线程中的异常”主“java.lang.NoClassDefFoundError:javafx / application / Application”

所以我读到,你通常不能导出一个带右键导出的jar等等,如果你想用命令行启动它(Linux或Windows,无关紧要)。双击工作,命令行没有。所以我使用了JavaFX项目附带的AntScript:build.fxbuild。我设置名称参数等,然后单击“ant build.xml并运行”

控制台出错:

(Only one entry, actually there are 52):
 [javac] warning: C:\Program Files (x86)\Java\jre8\lib\ext\jfxrt.jar(javafx/application/Application.class): major version 52 is newer than 51, the highest major version supported by this compiler.
 [javac]   It is recommended that the compiler be upgraded.

BUILD FAILED
****\****\****\JavaFXTest\build\build.xml:84: Problem: failed to create task or type javafx:com.sun.javafx.tools.ant:resources
Cause: The name is undefined.
Action: Check the spelling.
Action: Check that any custom tasks/types have been declared.
Action: Check that any <presetdef>/<macrodef> declarations have taken place.
No types or tasks have been defined in this namespace yet

我做了很多阅读,但发现你应该将JAVA_HOME路径设置为JDK而不是JRE。这导致JavaFX无法正常工作,无法识别JavaFX特定标记。

Ant脚本:(现在正在运行)

<?xml version="1.0" encoding="UTF-8"?>
<project name="JavaFXTest" default="do-deploy" basedir="."  xmlns:fx="javafx:com.sun.javafx.tools.ant">
<target name="init-fx-tasks">
    <path id="fxant">
        <filelist>
            <file name="${java.home}\..\lib\ant-javafx.jar"/>
            <file name="${java.home}\lib\jfxrt.jar"/>
        </filelist>
    </path>

    <taskdef resource="com/sun/javafx/tools/ant/antlib.xml"      
        uri="javafx:com.sun.javafx.tools.ant"
        classpathref="fxant"/>
</target>
<target name="setup-staging-area">
    <delete dir="externalLibs" />
    <delete dir="project" />
    <delete dir="projectRefs" />

    <mkdir dir="externalLibs" />

    <copy todir="externalLibs">
        <fileset dir="C:\Program Files (x86)\Java\jre8\lib\ext">
            <filename name="jfxrt.jar"/>    
        </fileset>
    </copy>

    <mkdir dir="project" />
    <copy todir="project">
        <fileset dir="D:\Entwicklung\workspace\JavaFXTest">
            <include name="src/**" />
        </fileset>
    </copy>
    <copy todir="project">
        <fileset dir="D:\Entwicklung\workspace\JavaFXTest">
            <include name="utils4j/**" />
        </fileset>
    </copy>

    <mkdir dir="projectRefs" />
</target>
<target name='do-compile'>
    <delete dir="build" />
    <mkdir dir="build/src" />
    <mkdir dir="build/libs" />
    <mkdir dir="build/classes" />

    <!-- Copy project-libs references -->
    <copy todir="build/libs">
        <fileset dir="externalLibs">
            <include name="jfxrt.jar"/>
        </fileset>
    </copy>

    <!-- Copy project references -->

    <!-- Copy project sources itself -->
    <copy todir="build/src">
        <fileset dir="project/utils4j">
            <include name="**/*"/>
        </fileset>
    </copy>
    <copy todir="build/src">
        <fileset dir="project/src">
            <include name="**/*"/>
        </fileset>
    </copy>

    <javac includeantruntime="false" source="1.6" target="1.6" srcdir="build/src" destdir="build/classes" encoding="Cp1252">
        <classpath>
            <fileset dir="build/libs">
                <include name="*"/>
            </fileset>
        </classpath>
    </javac>

    <!-- Copy over none Java-Files -->
    <copy todir="build/classes">
    <fileset dir="project/utils4j">
        <exclude name="**/*.java"/>
    </fileset>
    <fileset dir="project/src">
        <exclude name="**/*.java"/>
    </fileset>
    </copy>


</target>
<target name="do-deploy" depends="setup-staging-area, do-compile, init-fx-tasks">
    <delete file="dist"/>
    <delete file="deploy" />

    <mkdir dir="dist" />
    <mkdir dir="dist/libs" />

    <copy todir="dist/libs">
        <fileset dir="externalLibs">
            <include name="*" />
        </fileset>
    </copy>


    <fx:resources id="appRes">
        <fx:fileset dir="dist" includes="JavaFXTest.jar"/>
        <fx:fileset dir="dist" includes="libs/*"/>
    </fx:resources> 

    <fx:application id="fxApplication"
        name="AMAN_JAVAFX"
        mainClass="application.Main"
        toolkit="fx"
    />

    <mkdir dir="build/classes/META-INF" />



    <fx:jar destfile="dist/JavaFXTest.jar">
        <fx:application refid="fxApplication"/>
        <fileset dir="build/classes">
        </fileset>
        <fx:resources refid="appRes"/>

        <manifest>
            <attribute name="Implementation-Vendor" value="me"/>
            <attribute name="Implementation-Title" value="AMAN_JAVAFX"/>
            <attribute name="Implementation-Version" value="1.0"/>
            <attribute name="JavaFX-Feature-Proxy" value="None"/>
        </manifest>
    </fx:jar>


    <mkdir dir="deploy" />
    <!-- Need to use ${basedir} because somehow the ant task is calculating the directory differently -->
    <fx:deploy
        embedJNLP="false"
        extension="false"
        includeDT="false"
        offlineAllowed="true"
        outdir="${basedir}/deploy"
        outfile="JavaFXTest" nativeBundles="none"
        updatemode="background" >

        <fx:info title="JavaFXTest" vendor="me"/>
        <fx:application refId="fxApplication"/>
        <fx:resources refid="appRes"/>
    </fx:deploy>


</target>
</project>

问题:如何正确导出?怎么设置JAVA_HOME?我的启动命令是否对JavaFX有误? JRE 1.8和JDK 1.7之间是否存在版本冲突?

1 个答案:

答案 0 :(得分:1)

首先:&#34;线程中的异常&#34; main&#34; java.lang.NoClassDefFoundError:javafx / application / Application&#34;。这是因为类路径中没有JavaFX库。这些库在JRE 6中根本不存在。它们包含在JRE 7中(从版本7u6开始),但默认情况下也不在类路径中。我认为,如果您编译Java 6并且在jar中包含jfxrt.jar库(来自JDK 7),则可以让您的应用程序在JRE 6上运行。

请注意,即使您定位Java 7+,您仍应在JAR中包含jfxrt.jar库,因为JavaFX版本在JRE的所有次要版本(以及早于7u6的版本)中都不相同甚至不包括它。)

更好的解决方案可能是打包自包含应用程序,嵌入自己的JRE,这样您就不必依赖目标计算机上安装的JRE。这样,您可以使用JDK 8进行开发,使用Java 8和JavaFX 8的所有酷炫新功能,无论目标计算机上安装的JRE如何,dit都能正常工作。然而,缺点是更大的包,并且需要为不同的操作系统提供特定的包。在Oracle的文档中,一个很好的起点是this page

否则,如果您需要有关ant构建脚本的更多帮助,则可能需要发布实际脚本。显而易见的一点是,它尝试使用JRE 8安装中的JavaFX库(它是​​为Java 8编译的,它是类文件格式的主要版本52)编译Java 7(主要版本51) - 因此库不兼容。

编辑:经过多次挖掘后,我认为如果要部署到JRE 6,则需要下载JavaFX SDK for JDK 6 - JDK附带的JavaFX版本7可能不会在Java 6上工作。请注意,JDF 6的JavaFX仅适用于Windows(并且不再受支持),因此我认为您无法部署到Linux机器上只有JRE 6(当然除了自包含的应用程序)。