要在文件集中搜索多个字符串,我尝试使用 ant-contrib for .. 循环但没有成功。该文档具有以下简单示例
<project name="testing" default="main" basedir=".">
<taskdef resource="net/sf/antcontrib/antcontrib.properties">
<classpath>
<pathelement location="/usr/share/java/ant-contrib-0.3.jar"/>
</classpath>
</taskdef>
<task name=main">
<echo message="The first five letters of the alphabet are:"/>
<for list="a,b,c,d,e" param="letter">
<sequential>
<echo>Letter @{letter}</echo>
</sequential>
</for>
</task>
</project>
那失败了
xTest.xml:12: Problem: failed to create task or type for
Cause: The name is undefined.
这有什么问题?
不确定我是否需要 ant-contrib-0.3.jar 的 taskdef
注意:ANT 在 Eclipse 中运行,它的版本为:“Apache ANT 1.8.2v20110505-1300”