标签: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