gpt4 book ai didi

file - Ant 脚本 : Replace only the value of the key in a java property file

转载 作者:行者123 更新时间:2023-12-05 00:37:24 25 4
gpt4 key购买 nike

我正在使用此脚本替换位于 jar 文件中的属性文件中的值。

<replace file="/cygdrive/d/ant/test/target/com/test/resources.properties" token="MyKey" value="MyNewValue">

属性文件是:

MyKey=My Old Value

此脚本会将 MyKey 替换为 MyNewValue或者我需要用 MyNewValue 替换 My Old Value

最佳答案

您可能会使用 Ant propertyfile task ,类似于:

<propertyfile file="/cygdrive/d/ant/test/target/com/test/resources.properties">
<entry key="MyKey" value="MyNewValue"/>
</propertyfile>

关于file - Ant 脚本 : Replace only the value of the key in a java property file,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8510655/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com