ZT: How to Solve garbled characters in QT

Source: Internet
Author: User

Add the following code to main. cpp:

# Include <qtextcodec>

Int main (INT argc, char ** argv)
{
Qtextcodec * codec = qtextcodec: codecforname ("gb2312 ");
Qtextcodec: setcodecforlocale (codec );

Qtextcodec: setcodecforcstrings (codec );

Qtextcodec: setcodecfortr (codec );
}
In this way, you can use Chinese in other places of the program, TR ("Chinese") or directly use "Chinese;

Solve Chinese garbled characters in ini files

Qsettings settings ("XXXX. ini", qsettings: iniformat );

Settings. setinicodec (qtextcodec: codecforname ("gb2312"); // Add settings here to read and write the Chinese characters in the INI file.

Settings. begingroup ("company ");

Solve Chinese garbled characters for reading Chinese files
Qfile file ("xxxx.txt ");
Qtextstream stream (file, qiodevice: readonly );
Stream. setcodec (qtextcodec: codecforname ("gb2312 "));
Stream. readall ();

Article Source: DIY tribe (http://www.diybl.com/course/3_program/c++/cppjs/20090403/163794.html)

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.