继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

分享一个json数据的解析类

繁花如伊
关注TA
已关注
手记 397
粉丝 39
获赞 295

public class ResolveJsonUtils {


    public static <T> T getJson(String response, Class<T> cls)
            throws JsonSyntaxException {
        return new Gson().fromJson(response, cls);
    }

    public static <T> T getJson(String response, TypeToken<T> type)
            throws JsonSyntaxException {
        return new Gson().fromJson(response, type.getType());
    }

    public static String setJson(Object obj) {
        return new Gson().toJson(obj);
    }

    /**
     * @param response 需要第一层解析的数据
     * @param params   想要解析第一层数据的哪一节点
     * @throws JSONException
     */
    public static String getDataJson(String response, String params)
            throws JSONException {
        JSONObject jsonObject = new JSONObject(response);

//        return (String) jsonObject.get(params);
        return jsonObject.get(params).toString();

    }
}
// 调用的方法
  try {
        // 直接解析第一层 user_id是json字符串中的参数名称
        user_id = ResolveJsonUtils.getDataJson(response, "user_id");
	} catch (JSONException e) {
    	e.printStackTrace();
	}

原文链接:http://www.apkbus.com/blog-722618-72778.html

打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP