4
我想從標準文本文件中獲取文本並將其插入到由Apache Ant替換標記複製的XML中。這可能嗎?Apache Ant:是否可以插入/替換原始文本文件中的文本?
實例(這是我使用至今):
<macrodef name="generateUpdateFile">
<sequential>
<echo message="Generating update file ..." level="info"/>
<copy file="update.xml" tofile="${path.pub}/update.xml" overwrite="true">
<filterchain>
<replacetokens>
<token key="app_version" value="${app.version}"/>
<token key="app_updatenotes" value="${app.updatenotes}"/>
</replacetokens>
</filterchain>
</copy>
</sequential>
</macrodef>
的$ {} app.updatenotes目前是在build.properties文件中定義的字符串。但是,我想用一個簡單的文本文件編寫更新註釋,並從那裏獲取它們。
太棒了!感謝tonio提示! – BadmintonCat 2011-05-31 18:13:35