使用java for Mac OS X的Jar文件创建应用程序包?

时间:2013-12-05 18:59:24

标签: java macos bundle executable-jar

我用Swing写了一个小游戏程序,它被组织成包。我一直在努力创造一个game.app几乎没有任何成功。我关注This link,我甚至无法通过第1步。

首先我在顶级目录上做了jar cvf HangManProject.jar *

  1. 在此之后,要创建build.xml,我右键单击项目文件夹并生成如下所示的ant文件。你可以注意到我HangManProject.jar从上一步开始坐在那里。enter image description here

  2. 在此步骤之后,我在我的顶级目录(与HangManProject.jar相同的位置)上创建并提供了build.xml。

  3. 现在我按照上面的建议尝试了ant jar来创建dist / HangManProject.jar。但我收到以下错误消息:

    Buildfile:/Users/Tom/Documents/workspace/HangManProject/build.xml

    建立失败 目标“jar”在项目“HangManProject”中不存在。

  4. 从图像中可以看出,HangManProject.jar存在于同一目录中。我不明白为什么会弹出这个错误。

    我也试过ant -verbose(实际上并不知道它的作用)并且让它成功运作

    build:
    
    BUILD SUCCESSFUL
    Total time: 2 seconds
    

    我不知道ant -verbose是否有帮助,但我想在进入上面链接的下一步之前我必须让ant jar工作(第3步)。请给我你的建议。

    编辑: 这是由Eclipse自动生成的build.xml

    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <!-- WARNING: Eclipse auto-generated file.
                  Any modifications will be overwritten.
                  To include a user specific buildfile here, simply create one in the same
                  directory with the processing instruction <?eclipse.ant.import?>
                  as the first entry and export the buildfile again. -->
    <project basedir="." default="build" name="HangManProject">
        <property environment="env"/>
        <property name="ECLIPSE_HOME" value="../../../Downloads/eclipse"/>
        <property name="debuglevel" value="source,lines,vars"/>
        <property name="target" value="1.7"/>
        <property name="source" value="1.7"/>
        <path id="JUnit 4.libraryclasspath">
            <pathelement location="${ECLIPSE_HOME}/plugins/org.junit_4.11.0.v201303080030/junit.jar"/>
            <pathelement location="${ECLIPSE_HOME}/plugins/org.hamcrest.core_1.3.0.v201303031735.jar"/>
        </path>
        <path id="HangManProject.classpath">
            <pathelement location="bin"/>
            <path refid="JUnit 4.libraryclasspath"/>
        </path>
        <target name="init">
            <mkdir dir="bin"/>
            <copy includeemptydirs="false" todir="bin">
                <fileset dir="src">
                    <exclude name="**/*.launch"/>
                    <exclude name="**/*.java"/>
                </fileset>
            </copy>
        </target>
        <target name="clean">
            <delete dir="bin"/>
        </target>
        <target depends="clean" name="cleanall"/>
        <target depends="build-subprojects,build-project" name="build"/>
        <target name="build-subprojects"/>
        <target depends="init" name="build-project">
            <echo message="${ant.project.name}: ${ant.file}"/>
            <javac debug="true" debuglevel="${debuglevel}" destdir="bin" includeantruntime="false" source="${source}" target="${target}">
                <src path="src"/>
                <classpath refid="HangManProject.classpath"/>
            </javac>
        </target>
        <target description="Build all projects which reference this project. Useful to propagate changes." name="build-refprojects"/>
        <target description="copy Eclipse compiler jars to ant lib directory" name="init-eclipse-compiler">
            <copy todir="${ant.library.dir}">
                <fileset dir="${ECLIPSE_HOME}/plugins" includes="org.eclipse.jdt.core_*.jar"/>
            </copy>
            <unzip dest="${ant.library.dir}">
                <patternset includes="jdtCompilerAdapter.jar"/>
                <fileset dir="${ECLIPSE_HOME}/plugins" includes="org.eclipse.jdt.core_*.jar"/>
            </unzip>
        </target>
        <target description="compile project with Eclipse compiler" name="build-eclipse-compiler">
            <property name="build.compiler" value="org.eclipse.jdt.core.JDTCompilerAdapter"/>
            <antcall target="build"/>
        </target>
    </project>
    

1 个答案:

答案 0 :(得分:2)

你必须在build.xml文件中创建一个“target”来告诉ant如何创建jar(要包含哪些文件等)。

有关如何执行此操作的信息,请参阅此ant tutorial

但它看起来像这样:

编辑:现在您粘贴了build.xml,我添加了depends属性。

<target name="jar" depends = "build">
    <jar destfile="HangManProject.jar" >
        <fileset dir="bin"/>    

    </jar>
</target>

虽然你必须要小心,但是build.xml说eclipse会自动生成这个文件,任何修改都会被覆盖(我假设你改变了构建设置/类路径等)。