QT中有專門的一個類來處理編碼的問題(QTextCodec)。
在QT3中,QApplication可以設(shè)置程序的默認編碼,但是在QT4中已經(jīng)沒有了該成員函數(shù)。
可以以下的這些方法來設(shè)置編碼。
1. 設(shè)置QObject的成員函數(shù)tr()的編碼。
QTextCodec::setCodecForTr(QTextCodec::codecForName("GBK"));
其中的codecForName函數(shù)是根據(jù)參數(shù)中的編碼名稱,在系統(tǒng)已經(jīng)安裝的編碼方案中需找最佳的匹配編碼類型,該查找是大小寫不敏感的。如果沒有找到,就返回0。
具體的轉(zhuǎn)換代碼看下面:
#include <QApplication>
#include <QTextCodec>
#include <QLabel>
int main(int argc,char *argv[])
{
QApplication app(argc,argv);
QTextCodec::setCodecForTr(QTextCodec::codecForName("GBK"));
QLabel hello(QObject::tr("你好世界"));
hello.setWindowTitle(QObject::tr("Qt中文顯示"));
hello.show();
return app.exec();
}
注意:
setCodecForTr一定要在QApplication后面。不然沒有效果。而且這種方法只會轉(zhuǎn)換經(jīng)過tr函數(shù)的字符串,并不轉(zhuǎn)換不經(jīng)過tr函數(shù)的字符串。
技巧:
可以用codecForLocale函數(shù)來返回現(xiàn)在系統(tǒng)的默認編碼,這樣更容易做多編碼的程序而不用自己手動來更改具體的編碼。
2. 使用QString的fromLocal8Bit()函數(shù)
這個方法是最快的,系統(tǒng)直接自動將char *的參數(shù)轉(zhuǎn)換成為系統(tǒng)默認的編碼,然后返回一個QString。
#include <QApplication>
#include <QTextCodec>
#include <QLabel>
int main(int argc,char *argv[])
{
QApplication app(argc,argv);
QString str;
str = str.fromLocal8Bit("Qt中文顯示");
hello.setWindowTitle(str);
hello.show();
return app.exec();
}
3. 用QTextCodec的toUnicode方法來顯示中文
#include <QApplication>
#include <QTextCodec>
#include <QLabel>
int main(int argc,char *argv[])
{
QApplication app(argc,argv);
QLabel hello(QObject::tr("你好世界").toLocal8Bit());
QTextCodec *codec = QTextCodec::codecForLocale();
QString a = codec->toUnicode("Qt中文顯示");
hello.setWindowTitle(a);
hello.show();
return app.exec();
}
聯(lián)系客服