By using following block of code in build.xml
file
<propertyfile file="default.properties" comment="Default properties">
<entry key="source.dir" value="1" />
<entry key="dir.publish" value="1" />
<entry key="dir.publish.html" value="1" />
</propertyfile>
I am able to generate default.properties
file with following file contents
source.dir=1
dir.publish=1
dir.publish.html=1
I want to know how can I add my comments in the generated file? E.g. the generated properties should have the following content:
# Default Configuration
source.dir=1
dir.publish=1
# Source Configuration
dir.publish.html=1
How can I do it dynamically using Ant's build.xml
?
question from:
https://stackoverflow.com/questions/15924220/adding-comment-in-properties-files 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…