JSONObject JSONObject

2021-03-19 22:26

阅读:703

标签:oge   params   名称   div   int   name   print   字符   parse   

String response=httpClientUtil.doGet(url, params);
//处理resposne
JSONObject json = JSONObject.parseObject(response);
JSONArray items=json.getJSONArray(""
+ "items"); //将json字符串转成json数组
for (int i = 0; i JSONObject ob = items.getJSONObject(i);//得到json对象
name=ob.getString("name");//name这里是列名称,获取json对象中列名为name的值
path=ob.getString("path");
System.out.println(path);
}

 

 
 

JSONObject JSONObject

标签:oge   params   名称   div   int   name   print   字符   parse   

原文地址:https://www.cnblogs.com/xiaomifeng0510/p/12748776.html


评论


亲,登录后才可以留言!