首页 > 代码库 > ant的replace用法

ant的replace用法

1、eg1


<replace file="configure.sh" token="token" value=http://www.mamicode.com/"value">

在文件configure.sh中,所有的token替换为value。


2、eg2


<replace

file="configure.sh"

value=http://www.mamicode.com/"defaultvalue"

propertyFile="src/name.properties">


<replacefilter

token="token1"/>


<replacefilter

token="token2"

value=http://www.mamicode.com/"value2"/>


<replacefilter

token="token3"

property="property.key"/>


<replacefilter>

<replacetoken>token4</replacetoken>

<replacevalue>value4</replacevalue>

</replacefilter>

</replace>


在文件configure.sh中,所有的token1替换为defaultvalue,所有的token2替换为value2,所有的token3替换为propertyFile(src/name.properties)中property.key对应的值,所有的token4替换为value4。

ant的replace用法