我如何在 Ant 中使用数组或列表之类的东西?
我在 Ant 脚本中有一个字符串列表(例如“piyush,kumar”),我想将 piyush
分配给 var1,如 和
kumar
到 var2,如 。
到目前为止,我正在使用如下所示的构建文件:
<?xml version="1.0"?>
<project name="cutter" default="cutter">
<target name="cutter">
<for list="piyush,kumar" param="letter">
<sequential>
<echo>var1 @{letter}</echo>
</sequential>
</for>
</target>
</project>
我不确定如何进行此操作 - 有什么建议吗?
I have a list of strings (e.g. "piyush,kumar") in an Ant script for which I want to assign piyush
to var1 like <var name="var1" value="piyush"/>
and kumar
to var2 like <var name="var2" value="kumar"/>
.
So far, I'm using a buildfile like the following:
<?xml version="1.0"?>
<project name="cutter" default="cutter">
<target name="cutter">
<for list="piyush,kumar" param="letter">
<sequential>
<echo>var1 @{letter}</echo>
</sequential>
</for>
</target>
</project>
I'm not sure how to progress this - any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
下面是一个使用 ant-contrib 变量 和
math
任务:输出:
这与 Ant 非常不一样 - 一旦你设置了这些你是要去跟他们做什么呢?
您可能会考虑使用 Ant
script
任务来代替这种非声明式处理。Here's an example using an ant-contrib variable and the
math
task:Output:
This is all very un-Ant like though - once you've set these what are you going to do with them?
You might consider using an Ant
script
task instead for this sort of non-declarative processing.