<target name="three">
<echo message="A & B"/>
</target>
每当我运行此代码时,它都会显示错误The entity name must immediately follow the '&' in the entity reference.
我该如何打印A&amp;乙
请帮帮我吧
答案 0 :(得分:7)
使用&
代替&
答案 1 :(得分:7)
Ant脚本必须是有效的XML,因此&符号需要XML转义:
<target name="three">
<echo message="A & B"/>
</target>