如何在Ant脚本中内联几行java?

如何将几个java代码行内联(here-document)到Ant脚本中?
请举个例子?

解决方法:

我不相信你可以明智地为实际的Java代码做到这一点,但是我在Groovy上做了很多成功.Groovy Ant task documentation非常好.例如:

<groovy>
xmlfiles = new File(".").listFiles().findAll{ it =~ "\.xml$" }
xmlfiles.sort().each { println it.toString() }
</groovy>

(如果你愿意,你可以用更像Java的方式编写Groovy.)

上一篇:string – PHP heredoc解析错误


下一篇:在php heredoc里面的壳heredoc