Qt中文乱码解决
一、Qt代码文件格式设置为UTF8
1、std::cout乱码处理
std::cout << QString::fromUtf8("你好").toLocal8Bit().data() << std::endl;
2、文件名称乱码处理
QFile file(QString("你好.csv").toUtf8());
3、文件数据乱码处理
//必须分两步转换
QByteArray msgByteArray = QString::fromUtf8("你好,Qt:我爱你!__##").toLocal8Bit();
const char* msg = msgByteArray.data();
file.write(msg, strlen(msg));
保存的数据文件内容字符集格式为ANSI(Windows),CSV文件在Excel中打开需要使用ANSI字符集编码。
//必须分两步转换
QByteArray msgByteArray = QString::fromUtf8("你好,Qt:我爱你!__##").toUtf8();
const char* msg = msgByteArray.data();
file.write(msg, strlen(msg));
保存的数据文件内容字符集格式为UTF8。
完整代码
#include <iostream>
#include <QFile>
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
std::cout << QString::fromUtf8("你好").toLocal8Bit().data() << std::endl;
QFile file(QString("你好.csv").toUtf8());
file.open(QIODevice::WriteOnly | QIODevice::Text);
//必须分两步转换
// QByteArray msgByteArray = QString::fromUtf8("你好,Qt:我爱你!__##%1").arg(100).toUtf8();//文件数据编码格式UTF8
QByteArray msgByteArray = QString::fromUtf8("你好,Qt:我爱你!__##%1").arg(100).toLocal8Bit();//文件数据编码格式ANSI(Windows)
const char* msg = msgByteArray.data();
file.write(msg, strlen(msg));
file.close();
return a.exec();
}
二、Qt代码文件格式设置为GBK
1、std::cout乱码处理
std::cout << QString::fromLocal8Bit("你好").toLocal8Bit().data() << std::endl;
2、文件名称乱码处理
QFile file(QString::fromLocal8Bit("你好.csv").toUtf8());
3、文件数据乱码处理
//必须分两步转换
QByteArray msgByteArray = QString::fromLocal8Bit("你好,Qt:我爱你!__##").toLocal8Bit();
const char* msg = msgByteArray.data();
file.write(msg, strlen(msg));
保存的数据文件内容字符集格式为ANSI(Windows),CSV文件在Excel中打开需要使用ANSI字符集编码。
//必须分两步转换
QByteArray msgByteArray = QString::fromLocal8Bit("你好,Qt:我爱你!__##").toUtf8();
const char* msg = msgByteArray.data();
file.write(msg, strlen(msg));
保存的数据文件内容字符集格式为UTF8。
完整代码
#include <iostream>
#include <QFile>
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
std::cout << QString::fromLocal8Bit("你好").toLocal8Bit().data() << std::endl;
QFile file(QString::fromLocal8Bit("你好.csv").toUtf8());
file.open(QIODevice::WriteOnly | QIODevice::Text);
//必须分两步转换
// QByteArray msgByteArray = QString::fromLocal8Bit("你好,Qt:我爱你!__##%1").arg(100).toUtf8();//文件数据编码格式UTF8
QByteArray msgByteArray = QString::fromLocal8Bit("你好,Qt:我爱你!__##%1").arg(100).toLocal8Bit();//文件数据编码格式ANSI(Windows)
const char* msg = msgByteArray.data();
file.write(msg, strlen(msg));
file.close();
return a.exec();
}