QT5 解決中文顯示亂碼問題


Qt中的中文顯示,經常會出現亂碼。從網上看了一些博客,大都是Qt4中的解決方法, 
網上搜到的都是這種:

#include < QTextCodec >
int main(int argc, char **argv)
{
....................
QTextCodec::setCodecForTr(QTextCodec::codecForName("UTF8"));
QTextCodec::setCodecForLocale(QTextCodec::codecForName("UTF8"));
QTextCodec::setCodecForCStrings(QTextCodec::codecForName("UTF8"));
..........................
}

Qt5中, 取消了QTextCodec::setCodecForTr()和QTextCodec::setCodecForCString()這兩個函數,而且網上很多都是不推薦這種寫法。

我的問題

代碼:

#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();
}

3.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();
}

結果: 

 4.在頭文件申明中加上
#pragma execution_character_set("utf-8")
一切OK了

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM