QT在VS中的中文乱码
Posted maider
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了QT在VS中的中文乱码相关的知识,希望对你有一定的参考价值。
#ifdef WIN32
#pragma execution_character_set("utf-8")
#endif
#if _MSC_VER >= 1600
#pragma execution_character_set("utf-8")
#endif
一般有中文的字符串我会这种转:QString str = QString::fromLocal8Bit("中文");
这样str显示出来的就是中文,不是乱码。
以上是关于QT在VS中的中文乱码的主要内容,如果未能解决你的问题,请参考以下文章