Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 c++ 中有一个二进制文件读/写模块。这适用于英语,但无法读写法语字符集。我需要做哪些改变?需要指定任何特殊的编码类型吗?(我可以访问 c++ std 库和 qt 4.7 库函数)。
对于初学者,请确保您的数据文件是 UTF8 并且以 UTF8 格式打开它们。确保您的源代码文件也是 UTF8,特别是如果您在其中使用任何显式字符串,但最好避免使用显式字符串。
你可以试试
QString::fromUtf8(yourString)