QSettings 不能很好地处理 unicode

发布于 2024-12-14 06:16:17 字数 294 浏览 5 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

仅一夜美梦 2024-12-21 06:16:17

检查QSettingssetIniCodec函数代码>

设置用于访问 INI 文件(包括 Unix 上的 .conf 文件)的编解码器
到编解码器。编解码器用于解码从读取的任何数据
INI 文件,以及对写入该文件的任何数据进行编码。
默认情况下,不使用编解码器,对非 ASCII 字符进行编码
使用标准 INI 转义序列。

因此,您应该使用所需的编解码器来调用它,例如

QSettings settings;
settings.setIniCodec("UTF-8");

请注意,您必须在创建 QSettings 对象之后和访问任何数据之前立即调用它

Check the setIniCodec function of QSettings

Sets the codec for accessing INI files (including .conf files on Unix)
to codec. The codec is used for decoding any data that is read from
the INI file, and for encoding any data that is written to the file.
By default, no codec is used, and non-ASCII characters are encoded
using standard INI escape sequences.

So you should call it with the codec you want, eg

QSettings settings;
settings.setIniCodec("UTF-8");

Notice that you must call it immediately after creating the QSettings objects and before accessing any data.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文