qt for vs 界面顯示亂碼 及 Qt Creator中顯示中文亂碼問題


轉自 https://blog.csdn.net/u012230798/article/details/87947227

1:在CPP文件里加入 以下代碼  , 在#include 后面加入,否則  #ifdef Q_OS_WIN   不被識別。  也可以直接不要Q_OS_WIN。解決亂碼的是這一句:   

#pragma execution_character_set("utf-8")
#ifdef Q_OS_WIN
#pragma execution_character_set("utf-8") //解決 VS編譯器下中文亂碼
#endif
 

我的

#include "plc_dialog.h"
#include "ui_plc_dialog.h"
#include "ioselect_dialog.h"
 
#ifdef Q_OS_WIN
    #pragma execution_character_set("utf-8")   //解決 VS編譯器下中文亂碼
#endif
 
PLC_Dialog::PLC_Dialog(QWidget *parent) :
    QDialog(parent),
    ui(new Ui::PLC_Dialog)
{
    ui->setupUi(this);
 
    isEnt = false;
 
   type = "";
   port = 0;
   Level = 0;
 
}

  

 

2:如果不行,右鍵查看文件的格式   選擇 UTF-8 BOM on Save  要將文件保存為 UTF-8 BOM模式,  保存的時候一定要寫的東西,刺激編輯器保存文件,否則還是改不了。 

 

 

 

 

就是這種類型的錯誤:

 

 

 

 

保存為 UTF-8 BOM模式時注意事項:  Ctrl + S  保存。

 

 

 

 

 

其他轉換問題參考 https://blog.csdn.net/technologyleader/article/details/81979450?utm_source=distribute.pc_relevant.none-task

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

 

 

 

 

結果: 
這里寫圖片描述

 


免責聲明!

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



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