Qt5解决中文乱码问题

代码为:

#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.csdn.net/sinat_36053757/article/details/70142078 

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值