📜  Apache Ant令牌过滤器

📅  最后修改于: 2020-12-26 13:34:50             🧑  作者: Mango

Apache Ant令牌过滤器

令牌过滤器使我们能够在复制时从文件中过滤数据。要进行过滤,使用的令牌必须与过滤任务中设置的@ token @相匹配。 Tasks使用@作为令牌分隔符。为了实现此功能,Apache Ant提供了使用令牌属性的

此功能应仅与文本文件一起使用。

Apache Ant令牌过滤器属性

Attribute Description Required
token It is a token string without the separator chars (@). Yes
value It is a string that should be put to replace the token when the file is copied. Yes
filtersfile The file from which the filters must be read. This file must be a formatted as a property file. Yes

Apache Ant令牌过滤器示例

以下代码通过用rohan替换字符串@ name @的所有重复,将所有文件从源目录递归复制到目标目录。



  

要从student_data.properties文件读取所有属性条目,并将它们设置为过滤器。