ant 中 if else

原文載於:http://blog.myspace.cn/e/400944418.htm

ant中條件判斷這裏有2種形式,一種是運用 target 的if and unless attributes (ant 中自帶功能),一種是運用ant-contrib(一個ant的插件)中的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/target中test-1.0.jar存在,就把它copy到test/libdb目錄下。如果不存在就從test/built中把test-1.0.jar copy到test/libdb目錄下。

第二種:
1.先到http://ant-contrib.sourceforge.net/網站下載最新的ant-contrib.jar;
1.1 copy ant-contrib.jar到ant安裝目錄下的lib目錄下,如果你想在你的工程中用這個if-else的tasks,就添加下面一行到你的 build.xml文件中:

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="file.exist" file="dirname" filepath="src/test" type= "dir"/>

判斷某個資源是否存在:

<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

4, antelope Users Guide

http://antelope.tigris.org/nonav/docs/manual/index.html

5, Apache ant user manual

  http://ant.apache.org/manual/index.html

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章