C # JSON conversion and encoding conversion

Source: Internet
Author: User

C # JSON conversion and encoding conversion

I. C # Json Conversion

Download and install Newtonsoft. Json. dll and add using Newtonsoft. Json; using Newtonsoft. Json. Converters.

Convert String to JSON

String json = JsonConvert. SerializeObject (str );


Convert JSON to String

String str = JsonConvert. DeserializeObject (Json );


Ii. java json Conversion

Java needs to download the google-gson package (jar format), import the package, and add import com. google. gson. Gson;

Convert String to JSON

Gson gson = new Gson ();

String json = gson. toJson (str );

Convert JSON to String

Gson gson = new Gson ();

String str = gson. fromJson (s, TestEntity. class );

III. C # character encoding and conversion

String to UTF-8:

Byte [] B = Encoding. UTF8.GetBytes (str );


UTF-8 into a string:

String removeMsg = Encoding. UTF8.GetString (receiveData, 0, en );


Iv. Java character encoding and conversion

String to UTF-8

Byte [] bs = strContent. getBytes ("UTF-8 ");


UTF-8 to string

String resultStr = new String (charArray, 0, read_rst );

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.