ant的if-else

ant中的条件判断实例:

ant中条件判断这里有2种形式,一种是运用 target if and unless attributes,一种是运用ant-contrib中的if else

第一种:
<project name="test" basedir="." default="">
    <condition property="test.exist">
        <and>
            <available file="test-1.0.jar" filepath="test/target/>
        </and>
    </condition>
    <target name="copy-target" if="test.exist" description="Test Copy">
        <copy todir="test/libdb" preservelastmodified="true">
            <fileset dir="test/target">
                <include name="test-1.0.jar"/>
            </fileset>
        </copy>
    </target>
    <target name="copy" unless="test.exist" depends="copy-target">
        <copy todir="test/libdb" preservelastmodified="true">
            <fileset dir="test/built">
                <include name="test-1.0.jar"/>
            </fileset>
        </copy>
    </target>
</project>
如果test/targettest-1.0.jar存在,就把它copytest/libdb目录下。
如果不存在就从test/built中把test-1.0.jar copytest/libdb目录下。

第二种:
1.先到http://ant-contrib.sourceforge.net/网站下载最新的ant-contrib.jar;
  1.1 copy ant-contrib.jar
ant安装目录下的lib目录下,如果你想在你的工程中用这个if-elsetasks,就添加下面一行到你的 build.xml文件中:
<taskdef resource="net/sf/antcontrib/antcontrib.properties"/>

  1.2
也可以把ant-contrib.jar copy到一个相对独立的目录下,但是你在用的时候一定要指定这个目录,以便于ant能找到它,例如(lib 目录D:/ant-contrib),code如下:

<project name="test" basedir="." default="">
    <taskdef resource="net/sf/antcontrib/antcontrib.properties">
        <classpath>
            <pathelement location="D:/ant-contrib/ant-contrib-1.0b2.jar"/>
        </classpath>
    </taskdef>
    <available property="test.exist" file="test-1.0.jar" filepath="test/target"/>
    <target name="copy" description="Test Copy">
        <if>
            <isset property="test.exist"/>
            <then>
                <copy todir="test/libdb" preservelastmodified="true">
                    <fileset dir="test/target">
                        <include name="test-1.0.jar"/>
                    </fileset>
                </copy>
            </then>
            <else>
                <copy todir="test/libdb" preservelastmodified="true">
                    <fileset dir="test/built">
                        <include name="test-1.0.jar"/>
                    </fileset>
                </copy>
            </else>
        </if>
    </target>
</project>

2. available
释意:
Available判断某个类,或某个文件,或某个路径。如果存在,则设置某个property。返回true.
其格式如下:
   
判断某个类是否存在:
    <available property="class.exist" classname="package.test" classpath ="dist/test.jar"/>
   
判断某个文件是否存在:
    <available property="file.exist" file="test.txt" filepath="src/test" type= "file"/>
   
判断某个资源是否存在:
    <available property="resource.exist" resource="package/test/test1.class" classpath="dist/test.jar"/>

3. ant-contrib参考地址:

http://ant-contrib.sourceforge.net/ant-contrib/manual/tasks/index.html

 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值