qt5.5 qtcreator中文乱码

MSVC2010默认保存GBK编码。如果不转换成utf-8编码,对GBK编码的文件,中文可以直接用QStringLiteral()宏,如:
QMessageBox msgBox;
msgBox.setText(QStringLiteral("警告"));

你可能感兴趣的:(qt5.5 qtcreator中文乱码)