我该如何打印A& B在Ant脚本中的echo消息中

时间:2011-04-15 10:38:37

标签: ant

<target name="three">
<echo message="A & B"/>
</target> 

每当我运行此代码时,它都会显示错误The entity name must immediately follow the '&' in the entity reference. 我该如何打印A&amp;乙 请帮帮我吧

2 个答案:

答案 0 :(得分:7)

使用&amp;代替&

答案 1 :(得分:7)

Ant脚本必须是有效的XML,因此&符号需要XML转义:

<target name="three">
<echo message="A &amp; B"/>
</target>