我有一个在 Eclipse 中运行的 Ant 脚本,它在控制台中输出,如下所示:
buildStuff:
[echo] Building <project>
doStuff:
syncStuff:
[sync] Copying 1 file to <directory>
doOtherStuff:
callWebservice:
[http] HTTP Request
[http] ********************
[http] URL: <url>
[http] Method: GET
[http] HTTP Response
[http] ********************
[http] Status: 200
[echo] [callWebservice] Success
我想将部分/全部这些输出放入 ant 脚本内的属性中。
使用exec任务,我可以指定“输出属性”属性,但这不适用于antcall任务。
那么,如何从 ant 中访问或重定向控制台输出?