将 Apache ANT 中的文件连接到变量?

发布于 2025-01-01 00:07:10 字数 86 浏览 0 评论 0原文

我知道我可以使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

尐籹人 2025-01-08 00:07:10

concat 可以作为资源集合,所以您可以在 loadresource 中使用它:

<loadresource property="the.property">
  <concat>
    <file file="foo.txt" />
    <file file="another_file.txt />
    <string>You can put any resource in here, not just files!</string>
  </concat>
</loadresource>

现在.property属性将包含 concat 内所有资源的串联。 (当你说变量时,我假设你指的是 ant 属性。)

concat can be used as a resource collection, so you can use it in a loadresource:

<loadresource property="the.property">
  <concat>
    <file file="foo.txt" />
    <file file="another_file.txt />
    <string>You can put any resource in here, not just files!</string>
  </concat>
</loadresource>

Now the the.property property will contain the concatenation of all the resources inside the concat. (I'm assuming you mean an ant property when you say variable.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文