【Gson】Json转换器之Gson——项目实战

【简介】

json是一种数据格式,便于数据传输、存储、交换
gson是一种组件库,可以把java对象数据转换成json数据格式

【Json串的解析和处理】

实际开发过程中我们经常会遇到Json串的解析问题。下面做一下举例分析

[{"tableName":"students","tableData":[{"id":1,"name":"宝强","birthDay":"Jun 22, 2016 9:54:49 PM"},

{"id":2,"name":"马蓉","birthDay":"Jun 22, 2016 9:54:49 PM"},

{"id":3,"name":"宋喆","birthDay":"Jun 22, 2016 9:54:49 PM"}]},

{"tableName":"teachers","tableData":[{"id":1,"name":"刘老师","title":"教授"},

{"id":2,"name":"王老师","title":"讲师"}]}]

请看本文是如何处理的吧:

实体类:

[java] view plain copy
  1. import java.util.Date;  
  2.   
  3. public class Student {  
  4.     private int id;  
  5.     private String name;  
  6.     private Date birthDay;  
  7.   
  8.     public int getId() {  
  9.         return id;  
  10.     }  
  11.   
  12.     public void setId(int id) {  
  13.         this.id = id;  
  14.     }  
  15.   
  16.     public String getName() {  
  17.         return name;  
  18.     }  
  19.   
  20.     public void setName(String name) {  
  21.         this.name = name;  
  22.     }  
  23.   
  24.     public Date getBirthDay() {  
  25.         return birthDay;  
  26.     }  
  27.   
  28.     public void setBirthDay(Date birthDay) {  
  29.         this.birthDay = birthDay;  
  30.     }  
  31.   
  32.     @Override  
  33.     public String toString() {  
  34.         return "Student [birthDay=" + birthDay + ", id=" + id + ", name="  
  35.                 + name + "]";  
  36.     }  
  37.   
  38. }  
[java] view plain copy
  1. public class Teacher {  
  2.     private int id;  
  3.   
  4.     private String name;  
  5.   
  6.     private String title;  
  7.   
  8.     public int getId() {  
  9.         return id;  
  10.     }  
  11.   
  12.     public void setId(int id) {  
  13.         this.id = id;  
  14.     }  
  15.   
  16.     public String getName() {  
  17.         return name;  
  18.     }  
  19.   
  20.     public void setName(String name) {  
  21.         this.name = name;  
  22.     }  
  23.   
  24.     public String getTitle() {  
  25.         return title;  
  26.     }  
  27.   
  28.     public void setTitle(String title) {  
  29.         this.title = title;  
  30.     }  
  31.   
  32.     @Override  
  33.     public String toString() {  
  34.         return "Teacher [id=" + id + ", name=" + name + ", title=" + title  
  35.                 + "]";  
  36.     }  
  37.   
  38. }  
注意这里定义了一个TableData实体类:
[java] view plain copy
  1. import java.util.List;  
  2.   
  3. public class TableData {  
  4.   
  5.     private String tableName;  
  6.   
  7.     private List tableData;  
  8.   
  9.     public String getTableName() {  
  10.         return tableName;  
  11.     }  
  12.   
  13.     public void setTableName(String tableName) {  
  14.         this.tableName = tableName;  
  15.     }  
  16.   
  17.     public List getTableData() {  
  18.         return tableData;  
  19.     }  
  20.   
  21.     public void setTableData(List tableData) {  
  22.         this.tableData = tableData;  
  23.     }  
  24. }  
测试类

(仔细看将json转回为对象的实现,这里经过两次转化,第一次转回的结果是map不是我们所期望的对象,

对map再次转为json后再转为对象,我引用的是Gson2.1的jar处理正常,好像使用Gson1.6的jar会报错,所以建议用最新版本)

[java] view plain copy
  1. import java.util.ArrayList;  
  2. import java.util.Date;  
  3. import java.util.List;  
  4.   
  5. import com.google.gson.Gson;  
  6. import com.google.gson.reflect.TypeToken;  
  7.   
  8. public class GsonTest5 {  
  9.   
  10.     /** 
  11.      * @param args 
  12.      */  
  13.     public static void main(String[] args) {  
  14.         // 对象转为Json-->start  
  15.         Student student1 = new Student();  
  16.         student1.setId(1);  
  17.         student1.setName("宝强");  
  18.         student1.setBirthDay(new Date());  
  19.   
  20.         Student student2 = new Student();  
  21.         student2.setId(2);  
  22.         student2.setName("马蓉");  
  23.         student2.setBirthDay(new Date());  
  24.   
  25.         Student student3 = new Student();  
  26.         student3.setId(3);  
  27.         student3.setName("宋喆");  
  28.         student3.setBirthDay(new Date());  
  29.   
  30.         List<Student> stulist = new ArrayList<Student>();  
  31.         stulist.add(student1);  
  32.         stulist.add(student2);  
  33.         stulist.add(student3);  
  34.   
  35.         Teacher teacher1 = new Teacher();  
  36.         teacher1.setId(1);  
  37.         teacher1.setName("刘老师");  
  38.         teacher1.setTitle("教授");  
  39.   
  40.         Teacher teacher2 = new Teacher();  
  41.         teacher2.setId(2);  
  42.         teacher2.setName("王老师");  
  43.         teacher2.setTitle("讲师");  
  44.         List<Teacher> teacherList = new ArrayList<Teacher>();  
  45.         teacherList.add(teacher1);  
  46.         teacherList.add(teacher2);  
  47.   
  48.         TableData td1 = new TableData();  
  49.         td1.setTableName("students");  
  50.         td1.setTableData(stulist);  
  51.   
  52.         TableData td2 = new TableData();  
  53.         td2.setTableName("teachers");  
  54.         td2.setTableData(teacherList);  
  55.   
  56.         List<TableData> tdList = new ArrayList<TableData>();  
  57.         tdList.add(td1);  
  58.         tdList.add(td2);  
  59.         Gson gson = new Gson();  
  60.         String s = gson.toJson(tdList);  
  61.   
  62.         System.out.println(s);  
  63. // 结果:[{"tableName":"students","tableData":
  64. [{"id":1,"name":"宝强","birthDay":"Oct 22, 2016 10:44:16 AM"},
  65. {"id":2,"name":"马蓉","birthDay":"Oct 22, 2016 10:44:16 AM"},
  66. {"id":3,"name":"宋喆","birthDay":"Oct 22, 2016 10:44:16 AM"}]},
  67. {"tableName":"teachers","tableData":[{"id":1,"name":"刘老师","title":"教授"},
  68. {"id":2,"name":"王老师","title":"讲师"}]}]  
  69.         // 对象转为Json-->end  
  70.   
  71.         // /  
  72.   
  73.         // 将json转为数据-->start  
  74.         List<TableData> tableDatas2 = gson.fromJson(s,  
  75.                 new TypeToken<List<TableData>>() {  
  76.                 }.getType());  
  77.         for (int i = 0; i < tableDatas2.size(); i++) {  
  78.             TableData entityData = tableDatas2.get(i);  
  79.             String tableName = entityData.getTableName();  
  80.             List tableData = entityData.getTableData();  
  81.             String s2 = gson.toJson(tableData);  
  82.             // System.out.println(s2);  
  83.             // System.out.println(entityData.getData());  
  84.             if (tableName.equals("students")) {  
  85.                 System.out.println("students");  
  86.                 List<Student> retStuList = gson.fromJson(s2,  
  87.                         new TypeToken<List<Student>>() {  
  88.                         }.getType());  
  89.                 for (int j = 0; j < retStuList.size(); j++) {  
  90.                     System.out.println(retStuList.get(j));  
  91.                 }  
  92.   
  93.             } else if (tableName.equals("teachers")) {  
  94.                 System.out.println("teachers");  
  95.                 List<Teacher> retTchrList = gson.fromJson(s2,  
  96.                         new TypeToken<List<Teacher>>() {  
  97.                         }.getType());  
  98.                 for (int j = 0; j < retTchrList.size(); j++) {  
  99.                     System.out.println(retTchrList.get(j));  
  100.                 }  
  101.             }  
  102.         }  
  103.   
  104.         // Json转为对象-->end  
  105.     }  
  106. }  

输出结果:

[plain] view plain copy
  1. [{"tableName":"students","tableData":
  2. [{"id":1,"name":"宝强","birthDay":"Oct 22, 2012 10:04:12 PM"},
  3. {"id":2,"name":"马蓉","birthDay":"Oct 22, 2012 10:04:12 PM"},
  4. {"id":3,"name":"宋喆","birthDay":"Oct 22, 2012 10:04:12 PM"}]},
  5. {"tableName":"teachers","tableData":[{"id":1,"name":"刘老师","title":"教授"},
  6. {"id":2,"name":"王老师","title":"讲师"}]}]  
  7. students  
  8. Student [birthDay=Fri Oct 22 22:04:12 CST 2016, id=1, name=宝强]  
  9. Student [birthDay=Fri Oct 22 22:04:12 CST 2016, id=2, name=马蓉]  
  10. Student [birthDay=Fri Oct 22 22:04:12 CST 2016, id=3, name=宋喆]  
  11. teachers  
  12. Teacher [id=1, name=刘老师, title=教授]  
  13. Teacher [id=2, name=王老师, title=讲师] 
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值