qt5中文乱码解决方式

方法一
使用QString::fromLocal8Bit("中文字符串");

方法二:QStringLiteral
QStringLiteral("中文字符串");
 
方法三:
#include <QTextCodec>
QTextCodec *codec = QTextCodec::codecForName("GB18030");
codec->toUnicode("中文字符串");

你可能感兴趣的:(qt5中文乱码解决方式)