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.
任何人都可以帮助我将 QString 从 Ascii 转换为 unicode,反之亦然
如果可能的话,添加一些代码片段。
谢谢,
QString 提供了 toUtf8() 函数,该函数将字符串的 const char * 版本作为 QByteArray 返回。QString 还提供了 fromUtf8()。
顺便说一句,Qt 技术页面提供了大量示例。