代码为:
#include "helloqt.h"
#include <QtWidgets/QApplication>
#include <qlabel.h>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
HelloQt w;
w.setWindowTitle("学生事务管理系统");
w.resize(300, 140);
QLabel label("test",&w);
label.setGeometry(100, 50, 160, 30);
w.show();
return a.exec();
}
出现的问题:

解决方法
有三种转换的方法:
1.加上#include <qtextcodec.h>
QTextCodec *codec = QTextCodec::codecForName(“GBK”);//修改这两行
w.setWindowTitle(codec->toUnicode(“学生事务管理系统”));
代码改为:
方法一:
#include "helloqt.h"
#include <QtWidgets/QApplication>
#include <qlabel.h>
#include <qtextcodec.h>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
HelloQt w;
QTextCodec *codec = QTextCodec::codecForName("GBK");//修改这两行
w.setWindowTitle(codec->toUnicode("学生事务管理系统"));
w.resize(300, 140);
QLabel label("test",&w);
label.setGeometry(100, 50, 160, 30);
w.show();
return a.exec();
}
方法二
2.w.setWindowTitle(QString::fromLocal8Bit(“学生事务管理系统”));
代码改为:
#include "helloqt.h"
#include <QtWidgets/QApplication>
#include <qlabel.h>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
HelloQt w;
w.setWindowTitle(QString::fromLocal8Bit("学生事务管理系统"));//修改这一行
w.resize(300, 140);
QLabel label("test",&w);
label.setGeometry(100, 50, 160, 30);
w.show();
return a.exec();
}
方法三:
w.setWindowTitle(QStringLiteral(“学生事务管理系统”));
代码改为:
#include "helloqt.h"
#include <QtWidgets/QApplication>
#include <qlabel.h>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
HelloQt w;
w.setWindowTitle(QStringLiteral("学生事务管理系统"));//修改这一行
w.resize(300, 140);
QLabel label("test",&w);
label.setGeometry(100, 50, 160, 30);
w.show();
return a.exec();
}

原文出处:https://blog.youkuaiyun.com/sinat_36053757/article/details/70142078
本文介绍了在Qt应用中遇到中文显示错误的解决方案,包括使用QTextCodec进行编码转换,通过QString::fromLocal8Bit方法,以及利用QStringLiteral直接处理中文字符串的三种方法,帮助开发者解决字符集不兼容的问题。
944

被折叠的 条评论
为什么被折叠?



