码迷,mamicode.com
首页 > 编程语言 > 详细

Java解析复杂JSON数据的一种方法

时间:2019-11-04 15:28:23      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:middle   type   ext   使用   很多   imp   eal   ring   解析json数据   

1.需解析JSON数据:

{
"code": 0,
"message": "success",
"sid": "igr0007e88e@dx16e35035e9e020d802",
"data": {
"result": {
"age": {
"age_type": "0",
"child": "0.1452",
"middle": "0.5371",
"old": "0.3177"
},
"gender": {
"female": "0.1970",
"gender_type": "1",
"male": "0.8030"
}
},
"status": 2
}
}

2.需求:取出gender_type值;

3.
import org.json.JSONObject;
public void dealJson(String text){
  
JSONObject jsonObject = new org.json.JSONObject(text);    //将String类型的数据转换为JSONObject对象
JSONObject dataJson = jsonObject.getJSONObject("data"); //使用getJSONObject方法取出data的JSONObject对象
JSONObject resultJson = dataJson.getJSONObject("result");
JSONObject genderJson = resultJson.getJSONObject("gender");
System.out.println("genderJson==>"genderJson);
String gender = genderJson.getString("gender_type"); //取出gender_type的值
System.out.println("gender==>"+gender);




//方法很多,这里仅提供其中一种

Java解析复杂JSON数据的一种方法

标签:middle   type   ext   使用   很多   imp   eal   ring   解析json数据   

原文地址:https://www.cnblogs.com/xizui/p/11791956.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!