我的ant脚本是,
<target name="temp">
<property name="argument" value="xyz abc"/>
<echo message=" & quot;${argument}& quot;"/>
</target>
输出xyz abc
期望输出
"xyz abc"
如何得到预期的输出。我试过这样的"quot;${argument}"quot;
,这也不起作用。
注意:我在windows 7中使用ant 1.8.2和antcontrib
。
&
和quot;
之间是否有空格?
这个对我有效:
<target name="temp">
<property name="argument" value="xyz abc"/>
<echo message=""${argument}""/>
</target>
输出:temp:
[echo] "xyz abc"
BUILD SUCCESSFUL
Total time: 469 milliseconds