JSON parsing data in IOS is garbled in Chinese

Source: Internet
Author: User
  • The general server encoding format is UTF8, so through the JSON parsing down the data, the general Chinese is not garbled, but if the server encoding format is not UTF8, the data through JSON parsing in the Chinese is easy to appear luan garbled, how to solve the problem?

  • Generally is through transcoding to solve, but the direct transcoding, is not achieve the effect, for example

    [Jsonstringstringbyaddingpercentescapesusingencoding:nsutf8stringencoding]

    This direct transcoding is not up to the effect.

  • When parsing the data, it is possible to store the data in the NSData object before transcoding, for example

    Nsdata*jsondata = [Requestresponsedata];

    nsstring*jsonstring = [[nsstringalloc]initwithbytes:[jsondatabytes]length:[jsondatalength]encoding: Nsutf8stringencoding];

  • This solves the parsing of the data inside the Chinese garbled problem.

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.