彩票走势图

Ant基本模版示例详解

原创|其它|编辑:郝浩|2009-09-30 10:53:04.000|阅读 461 次

概述:本文介绍Ant基本模版示例详细介绍。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

  1. 编译、打jar包、运行程序的一个完整例子

<?xml version="1.0" encoding="UTF-8" ?> 
<project name="HelloWorld" default="run" basedir="."> 
  <property name="src" value="src" /> 
  <property name="dest" value="classes" /> 
  <property name="hello_jar" value="hello1.jar" />    
  <target name="init"> 
    <mkdir dir="${dest}" /> 
  </target> 
  <target name="compile" depends="init"> 
    <javac srcdir="${src}" destdir="${dest}" /> 
  </target> 
  <target name="build" depends="compile"> 
    <jar jarfile="${hello_jar}" basedir="${dest}" /> 
  </target> 
  <target name="run" depends="build"> 
    <java classname="test.ant.HelloWorld" classpath="${hello_jar}" /> 
  </target> 
  <target name="clean"> 
    <delete dir="${dest}" /> 
    <delete file="${hello_jar}" /> 
  </target> 
  <target name="rerun" depends="clean,run"> 
    <ant target="clean" /> 
    <ant target="run" /> 
  </target> 
</project>

  2. 若干个模块,分别都已经有了上面的build.xml和源代码,可以用下面的build.xml集成它们:

<?xml version="1.0" encoding="UTF-8" ?> 
<project name="main" default="build" basedir="."> 
  <property name="bin" value="${basedir}\bin"/> 
  <property name="src1" value="${basedir}\src1"/> 
  <property name="src2" value="${basedir}\src2"/> 
  <property name="src3" value="${basedir}\src3"/> 
  <target name="init"> 
    <mkdir dir="${bin}"/> 
  </target> 
  <target name="run"> 
    <ant dir="${src1}" target="run"/> 
    <ant dir="${src2}" target="run"/> 
    <ant dir="${src3}" target="run"/> 
  </target> 
  <target name="clean"> 
    <ant dir="${src1}" target="clean"/> 
    <ant dir="${src2}" target="clean"/> 
    <ant dir="${src3}" target="clean"/> 
  </target> 
  <target name="build" depends="init"> 
    <ant dir="${src1}" target="build"/> 
    <ant dir="${src2}" target="build"/> 
    <ant dir="${src3}" target="build"/> 
    <copy todir="${bin}"> 
      <fileset dir="${src1}"> 
        <include name="*.jar"/> 
      </fileset> 
      <fileset dir="${src2}"> 
        <include name="*.jar"/> 
      </fileset> 
      <fileset dir="${src3}"> 
        <include name="*.jar"/> 
      </fileset> 
    </copy> 
  </target> 
  <target name="rebuild" depends="build,clean"> 
    <ant target="clean"/> 
    <ant target="build"/> 
  </target> 
</project>

  3. 利用property简化属性

  新建all.properties文件,里面的内容

src1=F:\\TestAnt\\blog\\src1 
src2=F:\\TestAnt\\blog\\src2 
src3=F:\\TestAnt\\blog\\src3

  然后,在build.xml里这样写就可以了。

<property file="all.properties"/> 
<property name="bin" value=&quot;${basedir}\bin"/>

  4.利用include xml在多个build.xml里添加同样的内容

  如include.xml:

<?xml version="1.0" encoding="UTF-8" ?> 
<property name="src" value="src"/> 
<property name="dest" value="classes"/> 
<target name="test"> 
  <ant target="run"/> 
</target>

  在build.xml里这样写:

<?xml version="1.0" encoding="UTF-8" ?> 
<!--include a xml file, it can be common property, can be also a target--> 
<!DOCTYPE project[ 
<!ENTITY share-variable SYSTEM "file:../include.xml"> 
]> 
<project name="HelloWorld" default="run" basedir="."> 
  <!--use the include--> 
  &share-variable; 
  ... 
</project>


标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn

文章转载自:IT专家网

为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP