用ant打包可运行的jar文件 (将第三方jar包放进你自己的jar包)


用ant打包可运行的jar文件(将第三方jar包放进你自己的jar包)

Jar文件的运行方式直接双击或者

Java –jar xxxx.jar

要能直接运行必须在jar包下的MANIFEST.MF文件中添加入口类,就是带Main函数的。

例如:Main-Class: com.safx.processor.Starter

在MANIFEST.MF文件中添加了Main-Class这个属性,在运行jar包的时候默认就调用了这个类作为入口类。

下面列举用ant打包jar文件的3中方式:

1. 解压第三方jar包然后和你的class文件一起打包进jar文件

[html]  view plain  copy
  1. <span style="font-family:SimSun;font-size:12px;"><?xml version="1.0" encoding="UTF-8" standalone="no"?>  
  2. <project default="create_run_jar" name="Create Runnable Jar for Project SeleniumAutomation-3.1">  
  3.     <!--this file was created by Eclipse Runnable JAR Export Wizard-->  
  4.     <!--ANT 1.7 is required                                        -->  
  5.     <target name="create_run_jar">  
  6.         <jar destfile="C:/Users/topcat/Desktop/111.jar" filesetmanifest="mergewithoutmain">  
  7.             <manifest>  
  8.                 <attribute name="Main-Class" value="com.safx.processor.Starter"/>  
  9.                 <attribute name="Class-Path" value="."/>  
  10.             </manifest>  
  11.             <fileset dir="D:/SeleniumAutomation/SAFX-3.1/bin"/>  
  12.             <zipfileset excludes="META-INF/*.SF" src="D:/SeleniumAutomation/SAFX-3.1/lib/jaxen-1.1-beta-6.jar"/>  
  13.             <zipfileset excludes="META-INF/*.SF" src="D:/SeleniumAutomation/SAFX-3.1/lib/log4j-1.2.16.jar"/>  
  14.             <zipfileset excludes="META-INF/*.SF" src="D:/SeleniumAutomation/SAFX-3.1/lib/mail.jar"/>  
  15.             <zipfileset excludes="META-INF/*.SF" src="D:/SeleniumAutomation/SAFX-3.1/lib/testng-6.0.1.jar"/>  
  16.             <zipfileset excludes="META-INF/*.SF" src="D:/SeleniumAutomation/SAFX-3.1/lib/dom4j-1.6.1.jar"/>  
  17.             <zipfileset excludes="META-INF/*.SF" src="D:/SeleniumAutomation/SAFX-3.1/lib/guava-r09.jar"/>  
  18.             <zipfileset excludes="META-INF/*.SF" src="D:/SeleniumAutomation/SAFX-3.1/lib/jxl.jar"/>  
  19.             <zipfileset excludes="META-INF/*.SF" src="D:/SeleniumAutomation/SAFX-3.1/lib/selenium-java-2.21.0.jar"/>  
  20.         </jar>  
  21.     </target>  
  22. </project>  
  23. </span>  

上面的<filesetdir="D:/SeleniumAutomation/SAFX-3.1/bin"/> 这一段是 我自己的class文件路径。

我们的Main-Class属性设置为 com.safx.processor.Starter

上图就是我们用第一中方法打包成jar文件之后所有的内容。

 

2.将第三方jar直接打包进我们要生成的jar包

[html]  view plain  copy
  1. <span style="font-family:SimSun;font-size:12px;"><?xml version="1.0" encoding="UTF-8" standalone="no"?>  
  2. <project default="create_run_jar" name="Create Runnable Jar for Project SeleniumAutomation-3.1 with Jar-in-Jar Loader">  
  3.     <!--this file was created by Eclipse Runnable JAR Export Wizard-->  
  4.     <!--ANT 1.7 is required                                        -->  
  5.     <target name="create_run_jar">  
  6.         <jar destfile="C:/Users/topcat/Desktop/1212.jar">  
  7.             <manifest>  
  8.                 <attribute name="Main-Class" value="org.eclipse.jdt.internal.jarinjarloader.JarRsrcLoader"/>  
  9.                 <attribute name="Rsrc-Main-Class" value="com.safx.processor.Starter"/>  
  10.                 <attribute name="Class-Path" value="."/>  
  11.                 <attribute name="Rsrc-Class-Path" value="./ jaxen-1.1-beta-6.jar log4j-1.2.16.jar mail.jar testng-6.0.1.jar dom4j-1.6.1.jar guava-r09.jar jxl.jar selenium-java-2.21.0.jar"/>  
  12.             </manifest>  
  13.             <zipfileset src="jar-in-jar-loader.zip"/>  
  14.             <fileset dir="D:/SeleniumAutomation/SAFX-3.1/bin"/>  
  15.             <zipfileset dir="D:\SeleniumAutomation\SAFX-3.1\lib" includes="jaxen-1.1-beta-6.jar"/>  
  16.             <zipfileset dir="D:\SeleniumAutomation\SAFX-3.1\lib" includes="log4j-1.2.16.jar"/>  
  17.             <zipfileset dir="D:\SeleniumAutomation\SAFX-3.1\lib" includes="mail.jar"/>  
  18.             <zipfileset dir="D:\SeleniumAutomation\SAFX-3.1\lib" includes="testng-6.0.1.jar"/>  
  19.             <zipfileset dir="D:\SeleniumAutomation\SAFX-3.1\lib" includes="dom4j-1.6.1.jar"/>  
  20.             <zipfileset dir="D:\SeleniumAutomation\SAFX-3.1\lib" includes="guava-r09.jar"/>  
  21.             <zipfileset dir="D:\SeleniumAutomation\SAFX-3.1\lib" includes="jxl.jar"/>  
  22.             <zipfileset dir="D:\SeleniumAutomation\SAFX-3.1\lib" includes="selenium-java-2.21.0.jar"/>  
  23.         </jar>  
  24.     </target>  
  25. </project></span>  

上边的ant脚本相比第一中方法多了Rsrc-Main-Class和Rsrc-Class-Path这两个属性。

使用这种方法,我们需要额外引进一个jar-in-jar.zip文件。

<zipfileset src="jar-in-jar-loader.zip"/>

这个是eclipse 自带的,在打包完成之后,会将jar-in-jar.zip解压到你的jar包中

Jar-in-jar.zip  包含了上面这些class,写class在

org.eclipse.jdt.internal.jarinjarloader   包下

上图就是我们用第二中方法打包之后jar包里所有的文件。

上图就是我们用第二中方法打包之后jar包里所有的文件。

 

 

3.拷贝第三方jar到一个文件(如 lib文件夹),这个文件夹与我们自己的jar文件在在同级目录

[html]  view plain  copy
  1. <span style="font-family:SimSun;font-size:12px;"><?xml version="1.0" encoding="UTF-8" standalone="no"?>  
  2. <project default="create_run_jar" name="Create Runnable Jar for Project SeleniumAutomation-3.1 with libraries in sub-folder">  
  3.     <!--this file was created by Eclipse Runnable JAR Export Wizard-->  
  4.     <!--ANT 1.7 is required                                        -->  
  5.     <target name="create_run_jar">  
  6.         <jar destfile="C:/Users/topcat/Desktop/333.jar">  
  7.             <manifest>  
  8.                 <attribute name="Main-Class" value="com.safx.processor.Starter"/>  
  9.                 <attribute name="Class-Path" value=". lib/jaxen-1.1-beta-6.jar lib/log4j-1.2.16.jar lib/mail.jar lib/testng-6.0.1.jar lib/dom4j-1.6.1.jar lib/guava-r09.jar lib/jxl.jar lib/selenium-java-2.21.0.jar"/>  
  10.             </manifest>  
  11.             <fileset dir="D:/SeleniumAutomation/SAFX-3.1/bin"/>  
  12.         </jar>  
  13.         <delete dir="C:/Users/topcat/Desktop/lib"/>  
  14.         <mkdir dir="C:/Users/topcat/Desktop/lib"/>  
  15.         <copy file="D:/SeleniumAutomation/SAFX-3.1/lib/jaxen-1.1-beta-6.jar" todir="C:/Users/topcat/Desktop/lib"/>  
  16.         <copy file="D:/SeleniumAutomation/SAFX-3.1/lib/log4j-1.2.16.jar" todir="C:/Users/topcat/Desktop/lib"/>  
  17.         <copy file="D:/SeleniumAutomation/SAFX-3.1/lib/mail.jar" todir="C:/Users/topcat/Desktop/lib"/>  
  18.         <copy file="D:/SeleniumAutomation/SAFX-3.1/lib/testng-6.0.1.jar" todir="C:/Users/topcat/Desktop/lib"/>  
  19.         <copy file="D:/SeleniumAutomation/SAFX-3.1/lib/dom4j-1.6.1.jar" todir="C:/Users/topcat/Desktop/lib"/>  
  20.         <copy file="D:/SeleniumAutomation/SAFX-3.1/lib/guava-r09.jar" todir="C:/Users/topcat/Desktop/lib"/>  
  21.         <copy file="D:/SeleniumAutomation/SAFX-3.1/lib/jxl.jar" todir="C:/Users/topcat/Desktop/lib"/>  
  22.         <copy file="D:/SeleniumAutomation/SAFX-3.1/lib/selenium-java-2.21.0.jar" todir="C:/Users/topcat/Desktop/lib"/>  
  23.     </target>  
  24. </project></span>  

 

上面ant脚本中,我们自己的jar包叫做333.jar打包到桌面。在桌面建一个lib文件,将第三方 jar文件拷贝到lib文件夹中。 在Class-Path属性中设置第三方jar的相对路径。

上图就是就是打包完之后的格式。

第三中方式与第一和第二中方式不同的是,这中方法会有多个文件,不像第一和第二中方式中只生成一个jar文件,但也有优势就是结构相对比较简洁。选择哪中方式,还是看个人喜好吧。



注意!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系我们删除。



 
© 2014-2019 ITdaan.com 粤ICP备14056181号