为了账号安全,请及时绑定邮箱和手机立即绑定

Andorid之Gson解析Json数据

标签:
Android

Json类型数据可以通过Json官方提供的方法将Json字符串转化为对象类型,但是解析往往比较麻烦,

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

谷歌提供的Gson解析Json往往比Json解析更出色,更简单

在这里我写四个通用方法,将最常用的四种数据类型通过Gson将json数据解析还原为对象类型,List包裹对象类型,List包裹字符串类型,List包裹map类型。

 

如果没有看我的Android客户端与服务器端交互数据之json解析,有些类的调用省略没有写,建议先看一下

Gson解析需要的jar包下载(免积分)  由于安卓巴士屏蔽站外链接,所以暂不提供下载链接了

1.首先写Gson工具类,将Java对象转换为JSON数据,以及将JSON数据转换为Java对象

[代码]java代码:

?

001

002

003

004

005

006

007

008

009

010

011

012

013

014

015

016

017

018

019

020

021

022

023

024

025

026

027

028

029

030

031

032

033

034

035

036

037

038

039

040

041

042

043

044

045

046

047

048

049

050

051

052

053

054

055

056

057

058

059

060

061

062

063

064

065

066

067

068

069

070

071

072

073

074

075

076

077

078

079

080

081

082

083

084

085

086

087

088

089

090

091

092

093

094

095

096

097

098

099

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

package com.zml.utils;

 

import java.io.ByteArrayOutputStream;

import java.io.IOException;

import java.io.InputStream;

import java.util.ArrayList;

import java.util.Arrays;

import java.util.List;

import java.util.Map;

 

import com.google.gson.Gson;

import com.google.gson.JsonSyntaxException;

import com.google.gson.reflect.TypeToken;

 

/**

 * @author 郑明亮

 * @Time:2016年2月2日 下午2:15:38

 * @version 1.0

 */

public class GsonTools   {

 

    /**TODO 转换为json字符串

     * @param   src  要转换成json格式的 对象

     * @return

     */

    public static String createJsonString(Object src) {

        Gson   gson = new Gson();

        String   jsonString = gson.toJson(src);

        return jsonString;

    }

 

 

    /**TODO 转换为指定的 对象

     * @param   jsonString

     * @param   type 指定对象的类型 ,即 T.class

     * @return

     */

    public static <t> T getObject(String jsonString, Class<t> type) {

        T   t = null;

        try {

            Gson   gson = new Gson();

            t   = gson.fromJson(jsonString, type);

        }   catch (JsonSyntaxException   e) {

            //   TODO Auto-generated catch block

            e.printStackTrace();

        }

        return t;

    }

 

    /**得到 一个List<t>集合

     * @param   jsonString

     * @param   type  T的类型

     * @return

     */

    public static <t> List<t> getList(String jsonString, Class<t>   type) {

        List<t>   list = new ArrayList<t>();

        Gson   gson = new Gson();

        list   = gson.fromJson(jsonString, new TypeToken<list<t>>() {

        }.getType());

        return list;

 

    }

 

    /**TODO 得到一个List<t> 的集合

     * @param   jsonString json字符串

     * @param   type  数组的类型 ,即T[].class

     * @return

     */

    public static <t> List<t> StringTolist(String jsonString,   Class<t[]> type) {

        T[]   list = null;

        try {

            Gson   gson = new Gson();

            list   = gson.fromJson(jsonString, type);

        }   catch (JsonSyntaxException   e) {

            //   TODO Auto-generated catch block

            e.printStackTrace();

        }

 

        return Arrays.asList(list);

 

    }

    /**把json字符串转换为   String 集合

     * @param   jsonString

     * @return

     */

    public static List<string> getStrings(String jsonString) {

        List<string>   list = new ArrayList<string>();

        Gson   gson = new Gson();

        new TypeToken<list<string>>(){}.getType();

        list   = gson.fromJson(jsonString, new TypeToken<list<string>>() {

        }.getType());

        return list;

 

    }

 

    /**TODO 将json数据解析为Map<string,object>集合

     * @param   jsonString

     * @return

     */

    public static List<map<string, object="">> getMaps(String   jsonString) {

 

        List<map<string,   object="">> list = new ArrayList<map<string, object="">>();

        Gson   gson = new Gson();

        list   = gson.fromJson(jsonString,

                new TypeToken<list<map<string,   object="">>>() {

                }.getType());

 

        return list;

 

    }

 

     

}

</list<map<string,></map<string,></map<string,></map<string,></string,object></list<string></list<string></string></string></string></t[]></t></t></t></list<t></t></t></t></t></t></t></t></t>

2.开始测试

[代码]java代码:

?

01

02

03

04

05

06

07

08

09

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

package com.zml.test;

 

import java.util.List;

import java.util.Map;

 

import com.zml.pojo.Person;

import com.zml.utils.DataUtil;

import com.zml.utils.GsonTools;

import com.zml.utils.JsonTools;

 

 

/**

 * @author 郑明亮

 * @Time:2016年2月3日 下午1:10:44

 * @version 1.0 

 */

public class testgson   {

 

    public static void main(String[]   args) {

            String   jsonString;

            jsonString   = GsonTools.createJsonString(DataUtil.getPerson());

            System.out.println("-------------------转化为Json字符串------------------");

            System.out.println(jsonString);          

            System.out.println("-------------------解析后------------------");

            Person   person = GsonTools.getPerson(jsonString, Person.class);

            System.out.println(person.toString());

             

            System.out.println("-------------------转化为Json字符串------------------");

            jsonString   = GsonTools.createJsonString(DataUtil.getPersons());

            System.out.println(jsonString);  

            System.out.println("-------------------解析后------------------");

            List<person>   list = GsonTools.getlist(jsonString, Person.class);

            System.out.println(list.toString());

             

             

            System.out.println("-------------------转化为Json字符串------------------");

            jsonString   = GsonTools.createJsonString(DataUtil.getStrings());

            System.out.println(jsonString);      

            System.out.println("-------------------解析后------------------");

            List<string>   list2 = GsonTools.getStrings(jsonString);

            System.out.println(list2.toString());

             

             

            System.out.println("-------------------转化为Json字符串------------------");

            jsonString   = GsonTools.createJsonString(DataUtil.getMaps());

            System.out.println(jsonString);      

            System.out.println("-------------------解析后------------------");

            List<map<string,   object="">> list3 = GsonTools.getMaps(jsonString);

            System.out.println(list3.toString());

        }

         

 

}

</map<string,></string></person>

测试截图


3.测试成功后,开始编写Servlet,测试

[代码]java代码:

?

001

002

003

004

005

006

007

008

009

010

011

012

013

014

015

016

017

018

019

020

021

022

023

024

025

026

027

028

029

030

031

032

033

034

035

036

037

038

039

040

041

042

043

044

045

046

047

048

049

050

051

052

053

054

055

056

057

058

059

060

061

062

063

064

065

066

067

068

069

070

071

072

073

074

075

076

077

078

079

080

081

082

083

084

085

086

087

088

089

090

091

092

093

094

095

096

097

098

099

100

101

102

103

package com.zml.test;

 

import java.io.IOException;

import java.io.PrintWriter;

 

import javax.servlet.ServletException;

import javax.servlet.http.HttpServlet;

import javax.servlet.http.HttpServletRequest;

import javax.servlet.http.HttpServletResponse;

 

import com.zml.utils.DataUtil;

import com.zml.utils.GsonTools;

import com.zml.utils.JsonTools;

 

/**

 * @author 郑明亮

 * @Time:2016年2月3日 下午1:02:56

 * @version 1.0

 */

public class GsonServlet   extends HttpServlet   {

 

    /**

     *   Constructor of the object.

     */

    public GsonServlet() {

        super();

    }

 

    /**

     *   Destruction of the servlet. <br>

     */

    public void destroy() {

        super.destroy();   // Just puts "destroy" string in log

        //   Put your code here

    }

 

    /**

     * The doGet   method of the servlet. <br>

     *

     * This   method is called when a form has its tag value method equals to get.

     *

     * @param   request the request send by the client to the server

     * @param   response the response send by the server to the client

     * @throws   ServletException if an error occurred

     * @throws   IOException if an error occurred

     */

    public void doGet(HttpServletRequest request, HttpServletResponse response)

            throws ServletException, IOException {

 

    this.doPost(request,   response);

    }

 

    /**

     * The   doPost method of the servlet. <br>

     *

     * This   method is called when a form has its tag value method equals to post.

     *

     * @param   request the request send by the client to the server

     * @param   response the response send by the server to the client

     * @throws   ServletException if an error occurred

     * @throws   IOException if an error occurred

     */

    public void doPost(HttpServletRequest request, HttpServletResponse response)

            throws ServletException, IOException {

 

        response.setContentType("text/html;charset=utf-8");

        PrintWriter   out = response.getWriter();

        String   jsonString="";

        String    actionString = request.getParameter("action");

         

        if (actionString.equals("person"))   {

             

            jsonString   = GsonTools.createJsonString(DataUtil.getPerson());

 

        }   else if (actionString.equals("persons"))   {

             

            jsonString   = GsonTools.createJsonString(DataUtil.getPersons());

 

        }   else if (actionString.equals("strings"))   {

             

            jsonString   = GsonTools.createJsonString(DataUtil.getStrings());

 

        }   else if (actionString.equals("maps")) {

             

            jsonString   = GsonTools.createJsonString(DataUtil.getMaps());

             

        }

        System.out.println(jsonString);

        out.print(jsonString);

        out.flush();

        out.close();

    }

 

    /**

     *   Initialization of the servlet. <br>

     *

     * @throws   ServletException if an error occurs

     */

    public void init() throws ServletException {

        //   Put your code here

    }

 

}

测试成功截图:

 





源码下载(免积分)(由于安卓巴士屏蔽站外链接,所以暂不提供源码了)

更多关于Gson解析的内容可以移步到这    Gson解析第三方提供Json数据(天气预报,新闻等)

如果,您认为这篇博客让您有些收获,不妨点击一下【顶】。

如果,您希望更容易地发现我的新博客,不妨点击一下【加关注】。

因为,我的热情需要您的肯定和支持。 

感谢您的阅读,如果文章中有错误或者您有什么好的建议,也欢迎您直接留言批评指教。Thanks,friends!

原文链接:http://www.apkbus.com/blog-725636-61282.html

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消