<?xml version="1.0" encoding="UTF-8"?> <project name ="test" default="all" basedir="."> <target name ="all"> <!--替换指定文件的字符串--> <replace file="test1.txt" token="this" value="that"/> <!--按照replacefilter规则对指定目录的文件进行替换--> <replace dir="." includes="*.txt" > <replacefilter token="this" value="that"/> <replacefilter token="hello" value="world"/> </replace> </target> </project>
ant replace的使用
时间: 2024-10-13 01:35:44