如何在蚂蚁中检查条件并根据其值打印消息

  • 本文关键字:消息 打印 条件 蚂蚁 ant
  • 更新时间 :
  • 英文 :

这是

一小段代码,请看一下,然后按照描述进行操作。

    <condition property="${param1}">
            <or>
                <istrue value="win-x86"/>
                <istrue value= "win-x86-client"/>
                <istrue value= "win-x64"/>
            </or>
     </condition>
    <target name="Mytarget" if="${param1}">
        <echo message="executing windows family build:::${param1}"/>
    </target>
<target name="print.name" >
    <antcall target="win-x86-build">
       <param name="param1" value="${platform.id}"/>
    </antcall>
</target>

我希望当 platform.id 包含任何Windows系列名称时,它应该EXECUTING WINDOWS FAMILY BUILD打印消息,但问题是即使该系列是Unix,它也在打印此消息。

我认为要么我没有正确检查条件,要么我犯了其他错误。
有人可以帮我解决这个问题吗?

从 ant 1.9.1 开始,你可以这样做:

<project name="tryit" xmlns:if="ant:if" xmlns:unless="ant:unless">
   <exec executable="java">
     <arg line="-X" if:true="${showextendedparams}"/>
     <arg line="-version" unless:true="${showextendedparams}"/>
   </exec>
   <condition property="onmac">
     <os family="mac"/>
   </condition>
   <echo if:set="onmac">running on MacOS</echo>
   <echo unless:set="onmac">not running on MacOS</echo>
</project>

看起来你误解了条件任务:

property:要设置的属性的名称。

尝试使用条件os

测试当前操作系统是否为给定类型。

Peter 试图解释您必须显式指定属性名称。请尝试以下操作以使代码正常工作:

<project name="demo" default="Mytarget">
    <condition property="windoze">
        <or>
            <equals arg1="${param1}" arg2="win-x86"/>
            <equals arg1="${param1}" arg2="win-x86-client"/>
            <equals arg1="${param1}" arg2="win-x64"/>
        </or>
    </condition>
    <target name="Mytarget" if="windoze">
        <echo message="executing windows family build:::${param1}"/>
    </target>
</project>

更好的解决方案是利用 ANT 条件任务中内置的操作系统测试。

<project name="demo" default="Mytarget">
    <condition property="windoze">
        <os family="windows"/>
    </condition>
    <target name="Mytarget" if="windoze">
        <echo message="executing windows family build:::${os.name}-${os.arch}-${os.version}"/>
    </target>
</project>

相关内容

  • 没有找到相关文章

最新更新