【发布时间】:2019-07-28 20:35:41
【问题描述】:
使用 Apache Ant,我希望我的属性文件能够输出
blurb=test\n\
但是有了这个,\n\ 将在构建过程中转义斜线
<propertyfile file="about.properties">
<entry key="blurb" value="test\n\"/>
</propertyfile>
所以输出将是
blurb=test\\n\\
这是不正确的
【问题讨论】:
标签: apache ant properties-file