如何在XML中使用大于,如<if> <then> </then> </if>

时间:2014-08-20 10:01:10

标签: xml ant ant-contrib

当我使用时

    <if>        
        <equals arg1="10" arg2="${getValue}"/>
        <then>  
            <fail message="value is not equal to 10 "/>
        </then>
    </if> 

工作正常。

但当我尝试使用

    <if>        
        <greaterThan arg1="10" arg2="${getValue}"/>
        <then>  
            <fail message="value is greaterThan 10 "/>
        </then>
    </if> 

它给出了以下错误

  

如果不支持嵌套的“greaterThan”元素。

0 个答案:

没有答案