Json转换利器Gson之实例一-简单对象转化和带泛型的List转化

Gson 是 Google 提供的用来在 Java 对象和 JSON 数据之间进行映射的 Java 类库。可以将一个 JSON 字符串转成一个 Java 对象,或者反过来。

jar和源码下载地址: http://code.google.com/p/google-gson/downloads/list

实体类:

[java] view plaincopy

[java] view plaincopy

  1. public class Student {
  2. private int id;
  3. private String name;
  4. private Date birthDay;
  5. public int getId() {
  6. return id;
  7. }
  8. public void setId(int id) {
  9. this.id = id;
  10. }
  11. public String getName() {
  12. return name;
  13. }
  14. public void setName(String name) {
  15. this.name = name;
  16. }
  17. public Date getBirthDay() {
  18. return birthDay;
  19. }
  20. public void setBirthDay(Date birthDay) {
  21. this.birthDay = birthDay;
  22. }
  23. @Override
  24. public String toString() {
  25. return "Student [birthDay=" + birthDay + ", id=" + id + ", name="
  26. + name + "]";
  27. }
  28. }

测试类:

[html] view plaincopy

  1. import java.util.ArrayList;
  2. import java.util.Date;
  3. import java.util.List;
  4. import com.google.gson.Gson;
  5. import com.google.gson.reflect.TypeToken;
  6. public class GsonTest1 {
  7. public static void main(String[] args) {
  8. Gson gson = new Gson();
  9. Student student1 = new Student();
  10. student1.setId(1);
  11. student1.setName("李坤");
  12. student1.setBirthDay(new Date());
  13. // //////////////////////////////////////////////////////////
  14. System.out.println("----------简单对象之间的转化-------------");
  15. // 简单的bean转为json
  16. String s1 = gson.toJson(student1);
  17. System.out.println("简单Bean转化为Json===" + s1);
  18. // json转为简单Bean
  19. Student student = gson.fromJson(s1, Student.class);
  20. System.out.println("Json转为简单Bean===" + student);
  21. // 结果:
  22. // 简单Bean转化为Json==={"id":1,"name":"李坤","birthDay":"Jun 22, 2012 8:27:52 AM"}
  23. // Json转为简单Bean===Student [birthDay=Fri Jun 22 08:27:52 CST 2012, id=1,
  24. // name=李坤]
  25. // //////////////////////////////////////////////////////////
  26. Student student2 = new Student();
  27. student2.setId(2);
  28. student2.setName("曹贵生");
  29. student2.setBirthDay(new Date());
  30. Student student3 = new Student();
  31. student3.setId(3);
  32. student3.setName("柳波");
  33. student3.setBirthDay(new Date());
  34. List<Student> list = new ArrayList<Student>();
  35. list.add(student1);
  36. list.add(student2);
  37. list.add(student3);
  38. System.out.println("----------带泛型的List之间的转化-------------");
  39. // 带泛型的list转化为json
  40. String s2 = gson.toJson(list);
  41. System.out.println("带泛型的list转化为json==" + s2);
  42. // json转为带泛型的list
  43. List<Student> retList = gson.fromJson(s2,
  44. new TypeToken<List<Student>>() {
  45. }.getType());
  46. for (Student stu : retList) {
  47. System.out.println(stu);
  48. }
  49. // 结果:
  50. // 带泛型的list转化为json==[{"id":1,"name":"李坤","birthDay":"Jun 22, 2012 8:28:52 AM"},{"id":2,"name":"曹贵生","birthDay":"Jun 22, 2012 8:28:52 AM"},{"id":3,"name":"柳波","birthDay":"Jun 22, 2012 8:28:52 AM"}]
  51. // Student [birthDay=Fri Jun 22 08:28:52 CST 2012, id=1, name=李坤]
  52. // Student [birthDay=Fri Jun 22 08:28:52 CST 2012, id=2, name=曹贵生]
  53. // Student [birthDay=Fri Jun 22 08:28:52 CST 2012, id=3, name=柳波]
  54. }
  55. }

执行结果:

[plain] view plaincopy

  1. ----------简单对象之间的转化-------------
  2. 简单Bean转化为Json==={"id":1,"name":"李坤","birthDay":"Jun 22, 2012 9:10:31 PM"}
  3. Json转为简单Bean===Student [birthDay=Fri Jun 22 21:10:31 CST 2012, id=1, name=李坤]
  4. ----------带泛型的List之间的转化-------------
  5. 带泛型的list转化为json==[{"id":1,"name":"李坤","birthDay":"Jun 22, 2012 9:10:31 PM"},{"id":2,"name":"曹贵生","birthDay":"Jun 22, 2012 9:10:31 PM"},{"id":3,"name":"柳波","birthDay":"Jun 22, 2012 9:10:31 PM"}]
  6. Student [birthDay=Fri Jun 22 21:10:31 CST 2012, id=1, name=李坤]
  7. Student [birthDay=Fri Jun 22 21:10:31 CST 2012, id=2, name=曹贵生]
  8. Student [birthDay=Fri Jun 22 21:10:31 CST 2012, id=3, name=柳波]

Json转换利器Gson之实例一-简单对象转化和带泛型的List转化 (http://blog.csdn.net/lk_blog/article/details/7685169)
Json转换利器Gson之实例二-Gson注解和GsonBuilder (http://blog.csdn.net/lk_blog/article/details/7685190)
Json转换利器Gson之实例三-Map处理(上) (http://blog.csdn.net/lk_blog/article/details/7685210)
Json转换利器Gson之实例四-Map处理(下) (http://blog.csdn.net/lk_blog/article/details/7685224)
Json转换利器Gson之实例五-实际开发中的特殊需求处理 (http://blog.csdn.net/lk_blog/article/details/7685237)
Json转换利器Gson之实例六-注册TypeAdapter及处理Enum类型 (http://blog.csdn.net/lk_blog/article/details/7685347)

实例代码下载: http://download.csdn.net/detail/lk_blog/4387822

时间: 2024-10-08 15:29:44

Json转换利器Gson之实例一-简单对象转化和带泛型的List转化的相关文章

从零开始学android开发-Json转换利器Gson之实例

Gson 是 Google 提供的用来在 Java 对象和 JSON 数据之间进行映射的 Java 类库.可以将一个 JSON 字符串转成一个 Java 对象,或者反过来. jar和源码下载地址: http://code.google.com/p/google-gson/downloads/list 实体类: public class Student { private int id; private String name; private Date birthDay; public int

Json转换利器Gson之实例二-Gson注解和GsonBuilder

有时候我们不需要把实体的所有属性都导出,只想把一部分属性导出为Json. 有时候我们的实体类会随着版本的升级而修改. 有时候我们想对输出的json默认排好格式. ... ... 请看下面的例子吧: 实体类: [java] view plaincopy import java.util.Date; import com.google.gson.annotations.Expose; import com.google.gson.annotations.SerializedName; public 

Json转换利器Gson之实例

描述 Gson 是 Google 提供的用来在 Java 对象和 JSON 数据之间进行映射的 Java 类库.可以将一个 JSON 字符串转成一个 Java 对象,或者反过来 示例 import java.lang.reflect.Type; import java.sql.Timestamp; import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.ArrayList; import j

Json转换利器Gson—— List to Json

Json一种非常常用的数据交换方式,又因为我们现在Web框架使用的Easyui(其中最常用的table表格绑定的Json数据),Json的应用就必不可少了,我们现在从后台数据库得到的数据常用的类型是实体和list,都属于集合,性质是一样的,从实体或者list转成Json数据传到界面就是最关键的了. 其实Java中Json的解析方式有很多种,我们可以直接使用Java的JSONObject库,除此之外还有fastjson,Gson,jackson等等这些Json处理类库,共同之处不仅方便我们开发,转

java util - json转换工具 gson

需要 gson-2.7.jar 包 package cn.java.gson; import com.google.gson.JsonElement; import com.google.gson.JsonObject; import com.google.gson.JsonParser; public class Test { public static void main(String[] args) { dataType(); dataObj(); dataArray(); } publi

json解析之gson

Gson是Google的一个开源项目,可以将Java对象转换成JSON,也可能将JSON转换成Java对象. Gson里最重要的对象有2个Gson 和 GsonBuilder Gson有2个最基本的方法 1) toJson() – 转换java 对象到JSON 2) fromJson() – 转换JSON到java对象 对于泛型对象,使用fromJson(String, Type)方法来将Json对象转换成对应的泛型对象 new TypeToken<>(){}.getType()方法取得Typ

Gson框架实例

package com.json; import java.util.ArrayList; import java.util.Date; import java.util.HashMap; import java.util.LinkedHashMap; import java.util.List; import java.util.Map; import com.google.gson.FieldNamingPolicy; import com.google.gson.Gson; import

Json转换工具类(基于google的Gson和阿里的fastjson)

在项目之中我们经常会涉及到字符串和各种对象的转换,为此特地整理了一下常用的转换方法 一.基于com.google.code.gson封装的json转换工具类 1. 在pom.xml文件里面引入gson的依赖 <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.8.3</version> &

【Android开发经验】超好用的json解析工具——Gson项目使用介绍

转载请注明出处:http://blog.csdn.net/zhaokaiqiang1992 在上一篇文章中,我们简单的介绍了json数据格式,并介绍了如何使用Android自带的json工具,完成json数据的生成与解析.但是就像我所说的,自带的工具类太难用了!因此这篇文章,会介绍一个json解析的非常好的工具,那就是google的开源项目Gson. 咱们这次不介绍Gson里面的常用类了,因为常用的几个类非常的简单,我们直接上手开始用,看看Gson是多么的强大! 当然,如果使用第三方的项目,我们