在eclipse中为android项目创建jar

unk*_*own 11 java eclipse android jar

大家好我怎样才能创建使用eclipse在android中创建的项目的jar文件.我已经用这种方式完成了项目 - >右键单击 - >导出 - >选择构建器 - > antbuilder - >确定然后在此过程之后将创建build.xml.在bulid.xml上,我将创建新的构建器.

  • 右键单击项目 - >属性 - >选择新建 - >给出build.xml和项目路径,然后按"确定",将创建新的构建器.
  • 现在从项目属性中选择该构建器,然后按确定.
  • 现在构建您的项目,您的jar将在bin文件夹中创建.

我已经按照上面的过程但在bin文件夹中找不到我的jar.我可以看到我的build.xml已创建,所有进程都顺利但仍未创建jar.谁能告诉我怎么能这样做?

我的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="testtttttttttt">
    <property environment="env"/>
    <property name="debuglevel" value="source,lines,vars"/>
    <property name="target" value="1.6"/>
    <property name="source" value="1.6"/>
    <path id="Android 2.2.libraryclasspath">
        <pathelement location="C:/Program Files (x86)/Android/android-sdk/platforms/android-8/android.jar"/>
    </path>
    <path id="com.android.ide.eclipse.adt.LIBRARIES.libraryclasspath"/>
    <path id="testtttttttttt.classpath">
        <pathelement location="bin/classes"/>
        <path refid="Android 2.2.libraryclasspath"/>
        <path refid="com.android.ide.eclipse.adt.LIBRARIES.libraryclasspath"/>
    </path>
    <target name="init">
        <mkdir dir="bin/classes"/>
        <copy includeemptydirs="false" todir="bin/classes">
            <fileset dir="src">
                <exclude name="**/*.java"/>
            </fileset>
        </copy>
        <copy includeemptydirs="false" todir="bin/classes">
            <fileset dir="gen">
                <exclude name="**/*.java"/>
            </fileset>
        </copy>
    </target>
    <target name="clean">
        <delete dir="bin/classes"/>
    </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/classes" source="${source}" target="${target}">
            <src path="src"/>
            <classpath refid="testtttttttttt.classpath"/>
        </javac>
        <javac debug="true" debuglevel="${debuglevel}" destdir="bin/classes" source="${source}" target="${target}">
            <src path="gen"/>
            <classpath refid="testtttttttttt.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>
Run Code Online (Sandbox Code Playgroud)

YuD*_*oid 26

在Eclipse中,选择项目,右键单击项目,选择Export,从中选择Jar.然后按照简单向导将目标放在要保存jar的位置,然后完成.你可以在那里找到你的罐子. 在此输入图像描述

  • **替代**.如果您将项目标记为库项目,则会自动生成jar文件**.右键单击项目选择属性,然后从左侧选择Android,然后通过选中"Is Library",您可以将项目作为库项目.然后检查bin文件夹.如果罐子不在那里,清理并构建项目. (19认同)