Gson parsing arrays array and list container

Source: Internet
Author: User
Tags tojson

http://blog.csdn.net/lucky_bo/article/details/47657641

Gson parsing arrays and list containers

Using Gson parsing first needs to join the rack package file: Gson-2.2.4.jar

Define a class of student:

public class Student {

String name= "Xiao";

String sex= "Male";

}

To define a Java file:

public class Listtogson {

public static void Main (string[] args) {

Student[] people= new Student[]{new Student (), New Student (), New Student ()};

arraylist<student> list = new arraylist<student> ();

List.add (New Student ());

List.add (New Student ());

List.add (New Student ());

String json = new Gson (). ToJson (list);

String peoples = new Gson (). ToJson (people);

SYSTEM.OUT.PRINTLN (JSON);

SYSTEM.OUT.PRINTLN (peoples);

}
}

The results of the operation are as follows:

Parsing the list: [{"Name": "Xiao", "Sex": "Male"},{"name": "Xiao", "Sex": "Male"},{"name": "Xiao", "Sex": "Male"}]

Log group Resolution: [{"Name": "Xiao", "Sex": "Male"},{"name": "Xiao", "Sex": "Male"},{"name": "Xiao", "Sex": "Male"}]

Gson parsing arrays array and list container

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.