QSettings 不能很好地处理 unicode
我正在使用 QSettings 将一些设置存储在 INI 文件中。但是,我的程序不是英文的,因此某些设置包含 Unicode 字符串。看起来Qt不是用utf8或utf16写入INI文件,而是用其他一些编码,字符串“Привет мир!” (俄语。“Hello world!”)看起来像这样:
WindowTitle=\x41f\x440\x438\x432\x435\x442 \x43c\x438\x440!
我想手动编辑设置文件,但我不能像这样使用它。有没有办法强制 Qt 以 Unicode 保存?
I'm using QSettings
to store some settings in an INI file. However, my program is not in English, so some of the settings contain Unicode strings. It seems that Qt writes INI files not in utf8 or utf16, but in some other encoding, the string "Привет мир!" (rus. "Hello world!") looks like this:
WindowTitle=\x41f\x440\x438\x432\x435\x442 \x43c\x438\x440!
I want to edit settings file by hand, but I can't quite work with it like this. Is there a way to force Qt to save in Unicode?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查
QSettings
setIniCodec
函数代码>因此,您应该使用所需的编解码器来调用它,例如
请注意,您必须在创建 QSettings 对象之后和访问任何数据之前立即调用它。
Check the
setIniCodec
function ofQSettings
So you should call it with the codec you want, eg
Notice that you must call it immediately after creating the QSettings objects and before accessing any data.