2014-01-11 128 views
0

我試圖通過使用build.xml文件和提示代碼來構建一個項目的可運行的JAR文件JAR文件的NoClassDefFoundError

cd <the directory of you application> 
    ant -f bin/build.xml jar 

但是我有例外,當我運行的JAR,因爲我不能添加外部罐。

中的build.xml如下:

<?xml version="1.0" encoding="ISO-8859-1" ?> 

<!-- 

        This file was generated by Jason 1.3.9-alpha 
        http://jason.sf.net 

        Ocak 11, 2014 - 01:09:12 
--> 

<project name ="virtualClassroom" 
     basedir=".." 
     default="run"> 

    <property name="mas2j.project.file" value="virtualClassroom.mas2j"/> 
    <property name="debug" value=""/> <!-- use "-debug" to run in debug mode --> 
    <property name="build.dir" value="${basedir}/bin/classes" /> 

    <property name="jasonJar" value="C:\Users\Emre\Desktop\MasterThesis-BDI\Jason-1.3.9\Jason-1.3.9\lib\jason.jar"/> 
    <property name="JavaCsBridgeJar" value="C:\Users\Emre\Desktop\MasterThesis-BDI\virtualClassroom\lib\JavaCsBridge.jar"/> 

    <path id="project.classpath"> 
     <pathelement location="${basedir}"/> 
     <pathelement location="${build.dir}"/> 
     <pathelement location="${JavaCsBridgeJar}"/> 
     <pathelement location="${jasonJar}"/> 
     <fileset dir="${basedir}/lib" > <include name="*.jar" /> </fileset> 
    </path> 


    <!-- tasks the user can override in his/her c-build.xml script --> 
    <target name="user-init"> 
    </target> 
    <target name="user-end"> 
    </target> 

    <target name="init"> 
     <mkdir dir="${build.dir}" /> 
     <antcall target="user-init" /> 
    </target> 

    <target name="compile" depends="init"> 
     <condition property="srcdir" value="${basedir}/src/java" else="${basedir}" > 
      <available file="${basedir}/src/java" /> 
     </condition> 
     <javac srcdir="${srcdir}" destdir="${build.dir}" debug="true" optimize="true" includeantruntime="false" > 
      <classpath refid="project.classpath"/> 
     </javac> 
    </target> 

    <target name="jar" depends="compile"> 
     <delete file="${ant.project.name}.jar" /> 
     <copy file="${jasonJar}" tofile="${ant.project.name}.jar" /> 
     <copy file="${JavaCsBridge}" tofile="${ant.project.name}.jar" /> 
     <copy file="${mas2j.project.file}" tofile="default.mas2j" /> 
     <jar update="yes" jarfile="${ant.project.name}.jar" > 
      <fileset dir="${basedir}"> 
       <include name="**/*.asl" /> 
       <include name="**/*.mas2j" /> 
      </fileset> 
      <fileset dir="${build.dir}"> 
       <include name="**/*.class" /> 
      </fileset> 
      <manifest> 
        <attribute name="Main-Class" value="jason.infra.centralised.RunCentralisedMAS"/> 
      </manifest> 
     </jar> 
     <delete file="default.mas2j" /> 
    </target> 


    <target name="jnlp" depends="jar" > 
     <mkdir dir="${basedir}/${ant.project.name}-jws"/> 
     <java classname="jason.infra.centralised.CreateJNLP" 
       failonerror="true" fork="yes" dir="${basedir}/${ant.project.name}-jws" > 
      <classpath refid="project.classpath"/> 
      <arg line="${ant.project.name} ${mas2j.project.file}"/> 
     </java> 
     <copy todir="${basedir}/${ant.project.name}-jws" failonerror="no"> 
      <fileset dir="${basedir}/lib" includes="**/*.jar" /> 
      <fileset dir="${basedir}" includes="${ant.project.name}.jar" /> 
      <fileset dir="C:\Users\Emre\Desktop\MasterThesis-BDI\Jason-1.3.9\Jason-1.3.9/src/images" includes="Jason-GMoreau-Icon.jpg" /> 
     </copy> 
     <signjar jar="${basedir}/${ant.project.name}-jws/${ant.project.name}.jar" alias="jason" 
      storepass="rbjhja" keypass="rbjhja" keystore="C:\Users\Emre\Desktop\MasterThesis-BDI\Jason-1.3.9\Jason-1.3.9/src/jasonKeystore" /> 
     <echo message="**" /> 
     <echo message="** Java Web Start application created in directory ${ant.project.name}-jws" /> 
     <echo message="** Update the codebase (in the second line of the .jnlp file)" /> 
     <echo message="** with the URL where you will upload the application." /> 
     <echo message="**" /> 
    </target> 


    <target name="run" depends="compile" > 
     <echo message="Running project ${ant.project.name}" /> 
     <java classname="jason.infra.centralised.RunCentralisedMAS" 
       failonerror="true" fork="yes" dir="${basedir}" > 
      <classpath refid="project.classpath"/> 
      <arg line="${mas2j.project.file} ${debug} "/> 
      <!-- jvmarg line="-Xmx500M -Xss8M"/ -->  
     </java> 
     <antcall target="user-end" /> 
    </target> 

    <target name="clean" > 
     <delete failonerror="no" includeEmptyDirs="true" verbose="true"> 
      <fileset dir="${basedir}" includes="**/*.class"/> 
     </delete> 
    </target> 



</project> 

做任何人知道該怎麼辦?

感謝

+0

可能重複的[在用Ant編譯的文件中無法找到主類](http://stackoverflow.com/questions/3143567/cannot-find-main-class-in-file-compiled-with-ant) –

回答

0

首先,你需要明確的告訴我們哪些類是給NoClassDefFoundError 作爲一個通用的答案,該解釋是,特定的類是在運行時編譯時可用,但缺少的。這是jar可執行文件的常見問題。

解決方案:在jar本身中包含丟失的類或將其添加到系統類路徑中。

+0

Hello ,我正在嘗試添加JavaCsBridge.jar的NoClassDefFoundError。我如何將這個jar文件添加到系統類路徑中?我對classpath有點困惑 –

+0

我在jar中包含了所有的類,問題解決了,但是如果我沒有源代碼,我就無法做到。 –

相關問題