Android Gson深入分析

目前解析json有三种工具:org.json(Java常用的解析),fastjson(阿里巴巴工程师开发的),Gson(Google官网出的),解析速度最快的是Gson,下载地址:https://code.google.com/p/google-gson/


什么是JSON:


JSON即JavaScriptObject Natation, 它是一种轻量级的数据交换格式, 与XML一样, 是广泛被采用的客户端和服务端交互的解决方案.


JSON对象:


JSON中对象(Object)以"{"开始, 以"}"结束. 对象中的每一个item都是一个key-value对, 表现为"key:value"的形式, key-value对之间使用逗号分隔. 如:{"name":"coolxing", "age"=24, "male":true, "address":{"street":"huiLongGuan", "city":"beijing", "country":"china"}}. JSON对象的key只能是string类型的, 而value可以是string, number, false, true, null, Object对象甚至是array数组, 也就是说可以存在嵌套的情况.


JSON数组:


JSON数组(array)以"["开始, 以"]"结束, 数组中的每一个元素可以是string, number, false, true, null, Object对象甚至是array数组, 数组间的元素使用逗号分隔. 如["coolxing", 24,{"street":"huiLongGuan", "city":"beijing", "country":"china"}].


Gson的基本使用方法:

通过获取JsonReader对象解析JSON数据:

String jsonData = "[{\"username\":\"arthinking\",\"userId\":001},{\"username\":\"Jason\",\"userId\":002}]";try{JsonReader reader = new JsonReader(new StringReader(jsonData));reader.beginArray();while(reader.hasNext()){reader.beginObject();while(reader.hasNext()){String tagName = reader.nextName();if(tagName.equals("username")){System.out.println(reader.nextString());}else if(tagName.equals("userId")){System.out.println(reader.nextString());}}reader.endObject();}reader.endArray();}catch(Exception e){e.printStackTrace();}

   

通过把JSON数据映射成一个对象,使用Gson对象的fromJson()方法获取一个对象数组进行操作:

创建JSON数据对应的一个POJO对象User.java:

public class User {private String username ;private int userId ;public String getUsername() {return username;}public void setUsername(String username) {this.username = username;}public int getUserId() {return userId;}public void setUserId(int userId) {this.userId = userId;}}

使用Gson对象获取User对象数据进行相应的操作:

Type listType = new TypeToken<LinkedList<User>>(){}.getType();Gson gson = new Gson();LinkedList<User> users = gson.fromJson(jsonData, listType);for (Iterator iterator = users.iterator(); iterator.hasNext();) {User user = (User) iterator.next();System.out.println(user.getUsername());System.out.println(user.getUserId());}

如果要处理的JSON字符串只包含一个JSON对象,则可以直接使用fromJson获取一个User对象:

String jsonData = "{\"username\":\"arthinking\",\"userId\":001}";Gson gson = new Gson();User user = gson.fromJson(jsonData, User.class);System.out.println(user.getUsername());System.out.println(user.getUserId());
解析复杂实例:

数据格式:

[java] view plain copy print ?
  1. {
  2. "data":{
  3. "partnerteamlist":[
  4. {
  5. "pteamId":72825,
  6. "ptitle":"随摄影/共6套服装/准爸准妈共拍/免费肚画/底片全送。",
  7. "pteamprice":288
  8. },
  9. {
  10. "pteamId":72598,
  11. "ptitle":"随摄影/拍摄200张/4本相册/品质拍摄/送全新婚纱。",
  12. "pteamprice":2888
  13. },
  14. {
  15. "pteamId":72613,
  16. "ptitle":"随摄影/送全新婚纱/多外景拍摄/服装不限数量/绝无二次消费!",
  17. "pteamprice":3699
  18. },
  19. {
  20. "pteamId":72638,
  21. "ptitle":"随摄影/服装不限数量/高品质拍摄260张/送全新婚纱。",
  22. "pteamprice":4299
  23. },
  24. {
  25. "pteamId":72716,
  26. "ptitle":"随摄影/3组服装造型/内外景拍摄/完全透明消费!",
  27. "pteamprice":388
  28. }
  29. ],
  30. "liketeamlist":[
  31. {
  32. "lteamId":65886,
  33. "ltitle":"爱丽尔婚纱摄影/2本相册/6套服装造型/拍摄不限最低拍摄150张。",
  34. "limage":"http://img.pztuan.com/upfile/team/2013/0712/201307120257551465.jpg",
  35. "lteamprice":518,
  36. "lmarketprice":3999
  37. },
  38. {
  39. "lteamId":57133,
  40. "ltitle":"陶冶摄影/婚纱闺蜜/6组服装造型/拍摄不低于120张!",
  41. "limage":"http://img.pztuan.com/upfile/team/2013/0628/201306281115249737.jpg",
  42. "lteamprice":580,
  43. "lmarketprice":3380
  44. }
  45. ],
  46. "feedbacks":{
  47. "feedbacklist":[
  48. {
  49. "comment":"5分",
  50. "createtime":"2014.07.0813:38",
  51. "score":5,
  52. "username":"l***2"
  53. }
  54. ],
  55. "totalcount":1,
  56. "totalscore":5
  57. }
  58. },
  59. "err":null,
  60. "state":1
  61. }

实体类(里面的成员变量和接口的返回值名称一 一对应才能保证解析正确):

[java] view plain copy print ?
  1. packagecom.pztuan.entity;
  2. importjava.util.List;
  3. publicclassOtherDetail{
  4. privateintstate;
  5. privateList<err>err;
  6. privateOtherDetail2data;
  7. publicintgetState(){
  8. returnstate;
  9. }
  10. publicvoidsetState(intstate){
  11. this.state=state;
  12. }
  13. publicList<err>getErr(){
  14. returnerr;
  15. }
  16. publicvoidsetErr(List<err>err){
  17. this.err=err;
  18. }
  19. publicOtherDetail2getData(){
  20. returndata;
  21. }
  22. publicvoidsetData(OtherDetail2data){
  23. this.data=data;
  24. }
  25. publicclassOtherDetail2{
  26. privateList<partnerteamlist>partnerteamlist;
  27. privateList<liketeamlist>liketeamlist;
  28. privateList<feedbacks>feedbacks;
  29. publicList<liketeamlist>getLiketeamlist(){
  30. returnliketeamlist;
  31. }
  32. publicvoidsetLiketeamlist(List<liketeamlist>liketeamlist){
  33. this.liketeamlist=liketeamlist;
  34. }
  35. publicList<feedbacks>getFeedbacks(){
  36. returnfeedbacks;
  37. }
  38. publicvoidsetFeedbacks(List<feedbacks>feedbacks){
  39. this.feedbacks=feedbacks;
  40. }
  41. publicclasspartnerteamlist{
  42. privateintpteamId;
  43. privateStringptitle;
  44. privateDoublepteamprice;
  45. publicintgetPteamId(){
  46. returnpteamId;
  47. }
  48. publicvoidsetPteamId(intpteamId){
  49. this.pteamId=pteamId;
  50. }
  51. publicStringgetPtitle(){
  52. returnptitle;
  53. }
  54. publicvoidsetPtitle(Stringptitle){
  55. this.ptitle=ptitle;
  56. }
  57. publicDoublegetPteamprice(){
  58. returnpteamprice;
  59. }
  60. publicvoidsetPteamprice(Doublepteamprice){
  61. this.pteamprice=pteamprice;
  62. }
  63. }
  64. publicclassliketeamlist{
  65. privateintlteamId;
  66. privateStringltitle;
  67. privateStringlimage;
  68. privateDoublelteamprice;
  69. privateDoublelmarketprice;
  70. publicintgetLteamId(){
  71. returnlteamId;
  72. }
  73. publicvoidsetLteamId(intlteamId){
  74. this.lteamId=lteamId;
  75. }
  76. publicStringgetLtitle(){
  77. returnltitle;
  78. }
  79. publicvoidsetLtitle(Stringltitle){
  80. this.ltitle=ltitle;
  81. }
  82. publicStringgetLimage(){
  83. returnlimage;
  84. }
  85. publicvoidsetLimage(Stringlimage){
  86. this.limage=limage;
  87. }
  88. publicDoublegetLteamprice(){
  89. returnlteamprice;
  90. }
  91. publicvoidsetLteamprice(Doublelteamprice){
  92. this.lteamprice=lteamprice;
  93. }
  94. publicDoublegetLmarketprice(){
  95. returnlmarketprice;
  96. }
  97. publicvoidsetLmarketprice(Doublelmarketprice){
  98. this.lmarketprice=lmarketprice;
  99. }
  100. }
  101. publicclassfeedbacks{
  102. privateinttotalcount;
  103. privateDoubletotalscore;
  104. privateList<feedbacklist>feedbacklist;
  105. publicintgetTotalcount(){
  106. returntotalcount;
  107. }
  108. publicvoidsetTotalcount(inttotalcount){
  109. this.totalcount=totalcount;
  110. }
  111. publicDoublegetTotalscore(){
  112. returntotalscore;
  113. }
  114. publicvoidsetTotalscore(Doubletotalscore){
  115. this.totalscore=totalscore;
  116. }
  117. publicList<feedbacklist>getFeedbacklist(){
  118. returnfeedbacklist;
  119. }
  120. publicvoidsetFeedbacklist(List<feedbacklist>feedbacklist){
  121. this.feedbacklist=feedbacklist;
  122. }
  123. publicclassfeedbacklist{
  124. privateStringusername;
  125. privateStringcomment;
  126. privateStringcreatetime;
  127. privateDoublescore;
  128. publicStringgetUsername(){
  129. returnusername;
  130. }
  131. publicvoidsetUsername(Stringusername){
  132. this.username=username;
  133. }
  134. publicStringgetComment(){
  135. returncomment;
  136. }
  137. publicvoidsetComment(Stringcomment){
  138. this.comment=comment;
  139. }
  140. publicStringgetCreatetime(){
  141. returncreatetime;
  142. }
  143. publicvoidsetCreatetime(Stringcreatetime){
  144. this.createtime=createtime;
  145. }
  146. publicDoublegetScore(){
  147. returnscore;
  148. }
  149. publicvoidsetScore(Doublescore){
  150. this.score=score;
  151. }
  152. }
  153. }
  154. publicList<partnerteamlist>getPartnerteamlist(){
  155. returnpartnerteamlist;
  156. }
  157. publicvoidsetPartnerteamlist(List<partnerteamlist>partnerteamlist){
  158. this.partnerteamlist=partnerteamlist;
  159. }
  160. }
  161. publicclasserr{
  162. privateintcode;
  163. privateStringmsg;
  164. publicintgetCode(){
  165. returncode;
  166. }
  167. publicvoidsetCode(intcode){
  168. this.code=code;
  169. }
  170. publicStringgetMsg(){
  171. returnmsg;
  172. }
  173. publicvoidsetMsg(Stringmsg){
  174. this.msg=msg;
  175. }
  176. }
  177. }

注意上面内部类的运用。

解析:

[java] view plain copy print ?
  1. Gsongson=newGson();
  2. OtherDetaild=gson.fromJson(jsonString,Detail.class);//取值的时候就从父类一层一层调子类成员(重要)

更多相关文章

  1. Android(安卓)网络编程 Socket Http
  2. 蓝牙操作 Bluetooth
  3. android launcher总体分析 .
  4. Android_Intent意图详解
  5. Android之传感器(一)
  6. Android之解析Json数据 .
  7. android保存文件到sd卡,读取和清空记录功能(可以用来保存用户名和
  8. Android(安卓)布局转化为View对象的两种方法
  9. android 里面的 Drawable 和 ConstantState

随机推荐

  1. Android Studio 插件
  2. android实现视频播放的几种方式
  3. Android笔记【外观部分】
  4. android push notification serfice andr
  5. Android用户注册界面
  6. android中基于蓝牙开发的demo
  7. Android(安卓)OpenGL ES学习笔记之常用AP
  8. Android_Log_1_基础知识
  9. 理解Android中的Handler/Message
  10. 有关Android中EditText的一些属性