Java JSON processor Fastjson using the method detailed _java

Source: Internet
Author: User
Tags generator

Fastjson is a very good Java language implementation of the JSON parser and generator, from the Alibaba engineer Development.

Main Features:

Quick Fast (faster than any other java-based parser and generator, including Jackson)

• Strong (support for common JDK classes including any Java Bean class, Collection, Map, date, or enum)

• 0 Dependencies (no dependencies on any other class libraries except JDK)

Sample code:

Import Com.alibaba.fastjson.JSON;
 
Group Group = new Group ();
Group.setid (0L);
Group.setname ("admin");
 
User Guestuser = new user ();
Guestuser.setid (2L);
Guestuser.setname ("Guest");
 
User Rootuser = new user ();
Rootuser.setid (3L);
Rootuser.setname ("root");
 
Group.getusers (). Add (guestuser);
Group.getusers (). Add (rootuser); 
String jsonstring = json.tojsonstring (group); 
System.out.println (jsonstring);

Above this Java JSON processor Fastjson use method is small series to share all the content, hope to give you a reference, but also hope that we support cloud habitat community.

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.