将 Apache ANT 中的文件连接到变量?
我知道我可以使用 ANT 的 concat
将多个文件合并为一个文件。但是将文件合并到变量中怎么样?
这可以做到吗?
I know that I can use ANT's concat
to merge several files into one file. But what about merging files into a variable?
Can this be done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
concat
可以作为资源集合,所以您可以在loadresource
中使用它:现在
.property
属性将包含concat
内所有资源的串联。 (当你说变量时,我假设你指的是 ant 属性。)concat
can be used as a resource collection, so you can use it in aloadresource
:Now the
the.property
property will contain the concatenation of all the resources inside theconcat
. (I'm assuming you mean an ant property when you say variable.)