Gson解析数组array和list容器

Posted 萝卜条条

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Gson解析数组array和list容器相关的知识,希望对你有一定的参考价值。

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

Gson解析数组和list容器

 

使用Gson解析首先需要加入架包文件:gson-2.2.4.jar

 

定义一个类Student:

public class Student {

String name="xiao";

String sex="男";

}

定义Java文件:

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);

}
}

运行结果如下:

对list解析:[{"name":"xiao","sex":"男"},{"name":"xiao","sex":"男"},{"name":"xiao","sex":"男"}]

对数组解析:[{"name":"xiao","sex":"男"},{"name":"xiao","sex":"男"},{"name":"xiao","sex":"男"}]

以上是关于Gson解析数组array和list容器的主要内容,如果未能解决你的问题,请参考以下文章

Gson解析纯Json数组

使用 Gson 将 JSON 数组解析为 java.util.List

使用gson解析怎么将json字符串解析为数组

gson解析错误

如何通过gson解析存储的json数组字符串

Gson和Fastjson的使用