java

位置:IT落伍者 >> java >> 浏览文章

使用ant编译打包应用程序[3]


发布日期:2020年10月27日
 
使用ant编译打包应用程序[3]

<! 打包类文件 >

<target name=jar depends=compile description=打包类文件>

<jar jarfile=${distdir}/${jarfile} manifest=${srcdir}/${manifestfile}>

<fileset dir=${classesdir} includes=**/** />

</jar>

</target>

<! 从打包后jar的文件里运行 >

<target name=runjar depends=jar description=运行jar>

<java jar=${distdir}/${jarfile} fork=yes dir=${basedir} />

</target>

<! 运行 >

<target name=run depends=compile description=运行>

<java classname=powerwindSample fork=yes dir=${basedir}>

<classpath refid=runclasspath />

<arg line=${parammsg} />

</java>

</target>

</project>

属性文件buildproperties

manifestfile = manifesttxt

jarfile = samplejar

列表文件manifesttxt (最后的回车不能少)

MainClass: powerwindSample

文件结构

E:\JAVA\SAMPLE

│ buildproperties

│ buildxml

└─src

│ manifesttxt

└─powerwind

Samplejava

[] [] [] []

               

上一篇:使用ant编译打包应用程序[4]

下一篇:Struts从零开始二、解决中文乱码的问题实例[1]