我在dev.properties文件中有一个属性,它们看起来像这样:
test.url=https://www.example.com/
[...]
和项目文件中有一个令牌[[test]。url]],我想用https://www.example.com/代替。我只是想在dev.properties中定义所有令牌并在构建脚本中使用它们,但不修改构建脚本,我想在指定的文件中替换这些令牌,如*.php, *.html等。
谁能给我一个建议怎么做?谢谢。try this:
<copy file="input.txt" tofile="output.txt">
<filterchain>
<replaceregex pattern="${" replace="{" />
<filterreader classname="org.apache.tools.ant.filters.ReplaceTokens">
<param type="propertiesfile" value="properties.txt"/>
<param type="tokenchar" name="begintoken" value="{"/>
<param type="tokenchar" name="endtoken" value="}"/>
</filterreader>
</filterchain>
</copy>
创建于此:Ant替换属性文件中的token
在下面的Ant脚本中,将src-root
属性替换为包含标记化文件的根目录:
<project name="ant-replace-tokens-with-copy-task" default="run">
<target name="run">
<!-- The <copy> task cannot "self-copy" files. So, for each -->
<!-- matched file we'll have <copy> read the file, replace the -->
<!-- tokens, and write the result to a temporary file. Then, we'll -->
<!-- use the <move> task to replace the original files with the -->
<!-- modified files. -->
<property name="src-root" location="src"/>
<property name="filtered-file.extension" value="*.filtered-file"/>
<copy todir="${src-root}">
<fileset dir="${src-root}">
<include name="**/*.html"/>
<include name="**/*.php"/>
</fileset>
<globmapper from="*" to="${filtered-file.extension}"/>
<filterchain>
<filterreader classname="org.apache.tools.ant.filters.ReplaceTokens">
<param type="propertiesfile" value="dev.properties"/>
</filterreader>
</filterchain>
</copy>
<move todir="${src-root}">
<fileset dir="${src-root}" includes="**"/>
<globmapper from="${filtered-file.extension}" to="*"/>
</move>
</target>
</project>
您指定不想编辑构建脚本,因此此答案不符合条件,但可能对其他读者仍然有用。
如果您愿意编辑您的目标文件,使用格式${测试。Url}代替[[test. Url]。url]]那么expandproperties就是一个很好的选择。