JSONObject JSONObject
2021-03-19 22:26
标签:oge params 名称 div int name print 字符 parse JSONObject JSONObject 标签:oge params 名称 div int name print 字符 parse 原文地址:https://www.cnblogs.com/xiaomifeng0510/p/12748776.htmlString 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);
}
上一篇:ADO.NET 知识总结
下一篇:network 遇到的问题
文章标题:JSONObject JSONObject
文章链接:http://soscw.com/index.php/essay/66428.html