本文概述
- Apache Ant过滤器任务属性
- Apache Ant过滤器任务示例
Apache Ant过滤器任务属性
属性 | 描述 | 需要 |
---|---|---|
token | 设置没有分隔符chars @的令牌字符串。 | 是 |
value | 复制文件时应放置以替换令牌的字符串。 | |
filtersfile | 必须从中读取过滤器的文件。 |
// build.xml
<
project name="filter-project-example" default="filter">
<
target name="filter">
<
filter token="year" value="http://www.srcmini.com/2009"/>
<
copy todir="${dest.dir}" filtering="true">
<
fileset dir="${src.dir}"/>
<
/copy>
<
/target>
<
/project>
读取属性文件
【apache ant过滤器任务】下面的示例将从属性文件中读取所有属性。
<
project name="filter-project-example" default="filter">
<
target name="filter">
<
filter filtersfile="abc.properties"/>
<
/target>
<
/project>
推荐阅读
- apache ant导入任务
- apache ant fail任务
- apache ant ear任务
- apache ant删除任务
- apache ant cvs任务
- apache ant复制任务
- apache ant条件任务
- apache ant concat任务
- apache ant chmod任务