GB编码与UTF8编码的转换

在主函数app后加上这句:

引用

QTextCodec::setCodecForLocale(QTextCodec::codecForName("GB18030"));



然后是从UTF8编码到GB编码的字符串转换方法:

引用


QString Utf8_To_GB(QString strText)
{
    return QString::fromUtf8(strText.toLocal8Bit().data());
}



至于从GB到UTF8,那大家就经常用了:

引用

QString GB_To_Utf8(char *strText)
{
    return QString::fromLocal8Bit(strText);
}

你可能感兴趣的:(QT4)