zoukankan      html  css  js  c++  java
  • Qt中文显示

    来自 http://lwr0312.blog.163.com/blog/static/483368072010103001811552/

    QT默认的编码(unicode)是不能显示中文的,可能由于windows的默认编码的问题,windows默认使用(GBK/GB2312/GB18030),所以需要来更改QT程序的编码来解决中文显示的问题。

    QT中有专门的一个类来处理编码的问题(QTextCodec)。

    在QT3中,QApplication可以设置程序的默认编码,但是在QT4中已经没有了该成员函数。
    可以以下的这些方法来设置编码。

    1. 设置QObject的成员函数tr()的编码。

    QTextCodec::setCodecForTr(QTextCodec::codecForName("GBK"));

    其中的codecForName函数是根据参数中的编码名称,在系统已经安装的编码方案中需找最佳的匹配编码类型,该查找是大小写不敏感的。如果没有找到,就返回0。

    具体的转换代码看下面:
    #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后面。不然没有效果。而且这种方法只会转换经过tr函数的字符串,并不转换不经过tr函数的字符串。

    技巧:
    可以用codecForLocale函数来返回现在系统的默认编码,这样更容易做多编码的程序而不用自己手动来更改具体的编码。


    2. 使用QString的fromLocal8Bit()函数

    这个方法是最快的,系统直接自动将char *的参数转换成为系统默认的编码,然后返回一个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();
    }

  • 相关阅读:
    win7 下 qwt安装教程
    qt里标识操作系统的宏
    qt 获取系统磁盘空间大小
    qwt总结1
    debian创建apt-proxy代理
    在Linux使用mingw32来编写win32程序
    Linux环境变量的修改(永久,暂时)
    debian7 oracle11g 解决 link binaries 错误方案
    l​i​n​u​x添加​修​改​用​户​名​密​码
    HOWTO install Oracle 11g on Ubuntu Linux 12.04 (Precise Pangolin) 64bits
  • 原文地址:https://www.cnblogs.com/wangzihao/p/2168459.html
Copyright © 2011-2022 走看看