码迷,mamicode.com
首页 > 其他好文 > 详细

Gson简要使用

时间:2015-07-30 13:22:25      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:

 

public static void main(String[] args) {
Gson gson = new Gson();
List<Person> persons = new ArrayList<Person>();
for (int i = 0; i < 10; i++) {
Person p = new Person();
p.setName("name" + i);
p.setAge(i * 5);
persons.add(p);
}
String str = gson.toJson(persons);
System.out.println(str);
Type type = new TypeToken<List>() {
}.getType();
List list = gson.fromJson(str, type);
for (Iterator it = list.iterator(); it.hasNext();) {
System.out.println(it.next());
}
}

static class Person {

private String name;
private int age;

/**
* @return the name
*/
public String getName() {
return name;
}

/**
* @param name the name to set
*/
public void setName(String name) {
this.name = name;
}

/**
* @return the age
*/
public int getAge() {
return age;
}

/**
* @param age the age to set
*/
public void setAge(int age) {
this.age = age;
}

@Override
public String toString() {
return name + ":" + age;
}
}

Gson简要使用

标签:

原文地址:http://www.cnblogs.com/Junze/p/4688680.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!