1

編集:上記の問題はすべて、組み込みの jvm 引数を使用して実行可能な jar を作成することで回避できます。作成したら、appbundler を使用して .app にバンドルできます。VM 引数を実行可能 .jar に統合するにはどうすればよいですか?


Oracleのappbundlerを使用して.appにバンドルする必要がある実行可能jarがあります(OS Xで動作させるため)。を使用して端末から起動すると、私のjarファイルはOS Xで完全に動作しjava -XstartOnFirstThread -jar PhotoSelector.jarます。SWT (実行可能 jar にパッケージ化) と Cocoa の制限により-XstartOnFirstThread、Java 引数として設定する必要があります。-XstartOnFirstThread問題は、Eclipse (Ant!) を適切に構成して、.app をダブルクリックすると引数を使用してアプリが実行されるように設定する方法がわからないことです。これらは私のXMLファイルです:

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="PhotoSelector">
    <property environment="env"/>
    <property name="ECLIPSE_HOME" value="../../../eclipse Java"/>
    <property name="debuglevel" value="source,lines,vars"/>
    <property name="target" value="1.7"/>
    <property name="source" value="1.7"/>
    <import file="buildMac.xml"/>
    <path id="PhotoSelector.classpath">
        <pathelement location="bin"/>
        <pathelement location="lib/swt_64_OsX.jar"/>
    </path>
    <target name="init">
        <mkdir dir="bin"/>
        <copy includeemptydirs="false" todir="bin">
            <fileset dir="src">
                <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="PhotoSelector.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>
    <target name="Main">
        <java classname="com.selector.Main" failonerror="true" fork="yes">
            <classpath refid="PhotoSelector.classpath"/>
        </java>
    </target>
</project>

BuildMac.xml

<?eclipse.ant.import?>
<project name="PhotoSelectorBundler">
<taskdef 
name="bundleapp" 
classname="com.oracle.appbundler.AppBundlerTask" 
classpath="lib/appbundler-1.0.jar" />

<target name="bundle">
<bundleapp 
    outputdirectory="dist" 
    name="PhotoSelector" 
    displayname="Photo Selector" 
    identifier="com.selector.Main"
    mainclassname="Main"
    icon="src/com/selector/256.icns">
    <classpath file="dist/PhotoSelector.jar" />
</bundleapp>
</target>
</project>

だから、私の質問は次のとおりです。

  1. ダブルクリック時にデフォルトで -XstartOnFirstThread を .app に渡す方法は?
  2. .app を正しくエクスポートするために、Eclipse ant ツールでどのターゲットを選択する必要がありますか?

現在、私の .app は作成されていますが、すぐに閉じます。Jar Bundler は Java 1.7 (私のプロジェクトで広く使用されています) をサポートしていないため、appbundler を使用します。ありがとうございました!

4

1 に答える 1

4

ダブルクリック時にデフォルトで -XstartOnFirstThread を .app に渡す方法は?

<bundleapp>タグ内に次を追加します。

<option value="-XstartOnFirstThread"/>

.app を正しくエクスポートするために、Eclipse ant ツールでどのターゲットを選択する必要がありますか?

あなたがここで何を求めているのか正確にはわかりません。おそらくそれがあなたのbundleappターゲットになるでしょう。ステップ バイ ステップ ガイドについては、 Jar Bundler のドキュメントを参照してください。

Mac アプリは、拡張子が「.app」のディレクトリであることに注意してください。そのディレクトリ内に Contents/Info.plist ファイルがあります。これには、JVM 引数とその他の Java 関連情報が含まれます。引き続き問題が発生する場合は、調査を開始するのに適した場所になる可能性があります (また、他の人があなたの質問に回答するのにも役立ちます)。

于 2013-04-01T21:35:25.630 に答える