如何检查属性是否存在



如何使用Ant检查属性的存在?

我愿意使用ant-contrib,如果Ant不提供类似的东西。

同样,ant-contrib有一个断言任务,它提供exists,但断言不是我在这里需要的,因为我更喜欢布尔返回值。

您可以将Condition任务与isset条件一起使用。

<project default="test">
  <property name="a" value="a"/>
  <target name="test">
    <condition property="a.set" else="false">
      <isset property="a"/>
    </condition>
    <condition property="b.set" else="false">
      <isset property="b"/>
    </condition>
    <echo message="a set ? ${a.set}"/>
    <echo message="b set ? ${b.set}"/>
  </target>
</project>
输出:

test:
     [echo] a set ? true
     [echo] b set ? false

从Ant 1.9.1开始,可以使用"if"one_answers"unless"属性。如果将两个命名空间xmlns:if="ant:if"和xmlns:unless="ant:unless"添加到项目中,就可以使用这些新属性。

<!DOCTYPE project>
<project xmlns:if="ant:if" xmlns:unless="ant:unless">
  <property unless:set="property" name="property.is.set" value="false"/>
  <property if:set="property" name="property.is.set" value="true"/>
  <echo>${property.is.set}</echo>
</project>

参见https://ant.apache.org/manual/ifunless.html

相关内容

  • 没有找到相关文章

最新更新