我们有一个ModifyTextFile操作:
<action name="Einstellungen anpassen FR" id="59" customizedId="" beanClass="com.install4j.runtime.beans.actions.text.ModifyTextFileAction" enabled="true" commentSet="true" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="">
<serializedBean>
<java class="java.beans.XMLDecoder">
<object class="com.install4j.runtime.beans.actions.text.ModifyTextFileAction">
<void property="encoding">
<string />
</void>
<void property="files">
<array class="java.io.File" length="1">
<void index="0">
<object class="java.io.File">
<string>userstrings.txt</string>
</object>
</void>
</array>
</void>
<void property="replaceValue">
<string>22357,30,2, "Paramètres_Silent"</string>
</void>
<void property="searchValue">
<string>22357,30,2, "Paramètres"</string>
</void>
</object>
</java>
</serializedBean>
<condition />
</action>
问题在于,通过上述操作,当searchValue属性中带有重音字符(例如“è”)时,它总是无法找到文本。
此更改可与标准拉丁文字完美配合,只有带重音符号的字符会失败。
我们尝试设置多个“编码”属性值(1252,CP1252,Windows-1252,ISO 8859-1),但是没有任何运气。
文件本身在notepad ++中报告为“ ANSI”,但我们找不到确切的代码页。我们无法更改原始代码页,因为第三方应用程序正在读取它,因此需要保留原始代码页。
没有人知道为什么replace不能替换该值,安装日志显示以下内容:
[INFO] com.install4j.runtime.beans.actions.text.ModifyTextFileAction [ID 59]: Execute action
Property files: [userstrings.txt]
Property replaceValue: 22357,30,2, "Paramètres_Silent"
Property searchValue: 22357,30,2, "Paramètres"
Property escapeForPropertyFile: false
Property failIfNoReplacement: false
Property logReplacement: true
Property rollbackSupported: true
Backing up C:\Program Files\test\userstrings.txt
Execute action successful after 102 ms
这是我要更改的文件:
https://www.dropbox.com/s/j1bq070eznzby01/userstrings.txt?dl=0
Install4j版本7.0.9
答案 0 :(得分:1)
这是install4j中的一个错误,它将在7.0.11中修复,请联系support@ej-technologies.com获取已修复的版本。
顺便说一句,文件的“编码”属性的正确值为“ Cp1252”。