标签:code 控制 debug 根据 创建 return 字符编码 输出 编码
//utf8格式
QString str1("你好Hello\r\n"); QByteArray bLocal = str1.toLocal8Bit(); // 受setCodecForLocale影响,会转换为设定的编码。如果本机不支持指定编码,则会按toLatin1处理 QByteArray bUtf8 = str1.toUtf8(); // 不受setCodecForLocale影响,强制转换为UTF-8编码 qDebug() << str1; // 正常,Qt会将UTF-16转换为UTF-8输出 qDebug() << bLocal; // 乱码,用UTF-8编码输出GBK字节流 qDebug() << bUtf8; // 正常,用UTF-8编码输出UTF-8字节流 QString str2 = QString::fromLocal8Bit(bLocal); qDebug() << str2; // 正常,因为上面显式指定字节流来自本机编码,而bLocal正是本机编码GBK QString strTitle("你好Hello"); QFile file(strTitle); if(!file.open(QIODevice::WriteOnly|QIODevice::Append)) return false; file.write(QString::fromUtf8("你好啊Hello测试中\r\n").toLocal8Bit()); file.write(bUtf8); file.write(bLocal); file.write("1122测试中\r\n"); file.write(QString::fromUtf8("你好啊Hello\r\n").toLocal8Bit()); file.close();
//gbk格式
QString str1=QString::fromLocal8Bit("你好Hello\r\n"); QByteArray bLocal = str1.toLocal8Bit(); // 受setCodecForLocale影响,会转换为设定的编码。如果本机不支持指定编码,则会按toLatin1处理 QByteArray bUtf8 = str1.toUtf8(); // 不受setCodecForLocale影响,强制转换为UTF-8编码 qDebug() << str1; // 正常,Qt会将UTF-16转换为UTF-8输出 qDebug() << bLocal; // 乱码,用UTF-8编码输出GBK字节流 qDebug() << bUtf8; // 正常,用UTF-8编码输出UTF-8字节流 QString str2 = QString::fromLocal8Bit(bLocal); qDebug() << str2; // 正常,因为上面显式指定字节流来自本机编码,而bLocal正是本机编码GBK QString strTitle=QString::fromLocal8Bit("你好Hello"); QFile file(strTitle); if(!file.open(QIODevice::WriteOnly|QIODevice::Append)) return false; file.write(QString::fromLocal8Bit("你好啊Hello测试中\r\n").toLocal8Bit()); file.write(bUtf8); file.write(bLocal); file.write("1122测试中\r\n"); file.write(QString::fromLocal8Bit("你好啊Hello\r\n").toLocal8Bit()); file.close();
标签:code 控制 debug 根据 创建 return 字符编码 输出 编码
原文地址:https://www.cnblogs.com/karltong/p/9408819.html