标签:style blog color io ar strong div sp log
condition逻辑判断:
<project name="testCondition"> <target name="test"> <condition property="condition"> <istrue value="true"/> </condition> <antcall target="isTrue"></antcall> <antcall target="isFalse"></antcall> </target> <target name="isTrue" if="condition"> <echo>is ture</echo> </target> <target name="isFalse" unless="condition"> <echo>is false</echo> </target> </project>
标签:style blog color io ar strong div sp log
原文地址:http://www.cnblogs.com/rigid/p/3955856.html