我编写了一个ant脚本来创建一个Jar文件。这个文件包含在Eclipse项目中,并且在通过eclipse运行时工作正常。但是当它通过命令提示符在外部运行时,它会显示以下错误: 错误消息:创建jar:archive的问题包含超过65535个条目。 (存档可能已损坏,但我无法将其删除)
罐子大小:130 MB。 蚂蚁:1.9.3 Java:1.6
<property name="jar.name" value="SAFAL.jar" />
<property name="source.root" value="src" />
<property name="class.root" value="bin" />
<property name="lib.dir" value="lib" />
<property name="jar.dir" value="C:\D\SAFAL-Exe" />
<property name="Main-Class" value="com.ktt.main.SAFALEval" />
<property name="conf.pkj" value="com/ktt/business/configurations" />
<property name="img.pkj" value="com/ktt/business/images" />
<path id="project.class.path">
<pathelement location="${class.root}" />
<fileset dir="${lib.dir}">
<include name="*.jar" />
</fileset>
</path>
<target name="clean" description="cleans up build structures">
<delete dir="${class.root}" />
<delete file="${jar.dir}/${jar.name}" />
</target>
<target name="prepare" description="sets up build structures">
<mkdir dir="${class.root}" />
</target>
<target name="compile" depends="prepare" description="Compiles all java classes">
<javac srcdir="${source.root}" destdir="${class.root}" debug="on" optimize="off" deprecation="on" source="1.6" target="1.6" includeantruntime = "false">
<classpath refid="project.class.path" />
</javac>
<mkdir dir="${class.root}/${conf.pkj}" />
<mkdir dir="${class.root}/${img.pkj}" />
<copy todir="${class.root}/${conf.pkj}">
<fileset dir="${source.root}/${conf.pkj}" />
</copy>
<copy todir="${class.root}/${img.pkj}">
<fileset dir="${source.root}/${img.pkj}" />
</copy>
</target>
<target name="jar" depends="compile">
<delete file="${jar.dir}/${jar.name}" quiet="true" failonerror="false" />
<jar destfile="${jar.dir}/${jar.name}">
<fileset dir="${class.root}" includes="**/*.*" />
<zipgroupfileset dir="${lib.dir}" />
<manifest>
<attribute name="Main-Class" value="${Main-Class}" />
<attribute name="Class-Path" value="." />
</manifest>
</jar>
</target>
<target name="run">
<java fork="true" classname="${Main-Class}">
<classpath>
<path location="./${jar.name}" />
</classpath>
</java>
</target>
答案 0 :(得分:3)
要创建超过65535个条目的ZIP / JAR文件,您需要支持“zip64Mode”的Apache Ant - 支持它的第一个版本是Ant 1.9.1。
因此,我假设您的独立Apache Ant版本太旧了。
答案 1 :(得分:1)
问题已解决。我将ANT版本从1.9.3更改为1.8.4(1.8.4是默认的eclipse ant版本)。现在ant build文件正在成功执行。