通过echo,可以将一个消息输出到当前的日志记录器、监听器,如果没有覆盖的话,默认就是在控制台输出(即System.out)。
也可以将消息发送到文件。
可以使用的参数:
举例,build.xml文件的的内容如下:
<project>
<echo message="This is the first message."/>
<echo>This is second message.</echo>
<echo>"This is the third message."</echo>
</project>
在cmd下运行ant的输出: