qt 字符串编码方式转换

时间:2022-06-01 08:41:27

有些时候字符串编码方式不一样可能会导致汉字输出乱码,具体解决方式如下:

如果是从QByteArray转到字符串,可以用以下方式:

    QFile file("FileName");

    QTextCodec *codec = QTextCodec::codecForName("GBK");

    QString line = codec->toUnicode(file.readLine());

在qt的help中toUnicode有几种使用方法:

QString QTextCodec::toUnicode(const QByteArray &a) const
Converts a from the encoding of this codec to Unicode, and returns the result in a QString.
QString QTextCodec::toUnicode(const char *chars) const
This is an overloaded function.
chars contains the source characters.
QString QTextCodec::toUnicode(const char *input, int size, ConverterState *state = Q_NULLPTR) const
Converts the first size characters from the input from the encoding of this codec to Unicode, and returns the result in a QString.

The state of the convertor used is updated.

以上是在局部范围内做的编码方式改变,如整个工程可使用一个编码方式,那么可以在构造函数中直接使用:

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

注意:在一个cpp文件中修改后会影响整个工程。


如果在代码中采用整体设置QTextCodec::setCodecForLocale(QTextCodec::codecForName("UTF-8"));对整个工程的编码做了限定之后,某一个局部的编码出错的话,可使用上述局部编码的方式进行局部修改,不会影响其他大局!