码迷,mamicode.com
首页 > 其他好文 > 详细

Qt开发中的实用笔记二--中文转码问题和string转换问题:

时间:2016-12-19 21:11:27      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:codec   local   for   text   函数   name   extc   gbk   nbsp   

一,中文乱码转码问题

  1,转码三句话:window下默认是GBK格式,linux下默认是UTF-8,看情况转换UTF-8/GBK

         QTextCodec::setCodecForTr(QTextCodec::codecForName("UTF-8"));

         QTextCodec::setCodecForLocale(QTextCodec::codecForName("UTF-8"));

         QTextCodec::setCodecForCStrings(QTextCodec::codecForName("UTF-8"));

  2,中文放进tr(" ");函数,自动转换成需要的格式   

 

二,std::string 和QString的相互转换

  1,小例子:std::string std;  

       QString qstring;

     str::string转QString  qstring = QString(QString::fromLocal8Bit(std.c_str());

    QString转str::string    std = string(const(char*)qstring.toLocal8Bit());

 

Qt开发中的实用笔记二--中文转码问题和string转换问题:

标签:codec   local   for   text   函数   name   extc   gbk   nbsp   

原文地址:http://www.cnblogs.com/weizhixiang/p/6198865.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!