java 解析 json 遍历未知key详解编程语言

1、——————————————————————————————————————————————————————————————
import net.sf.json.JSONObject; String json = "{/"name/":/"lss/"}"; JSONObject jsonObj = JSONObject.fromObject(json); String name = jsonObj.getString("name"); Iterator it = jsonObj.keys(); List<String> keyListstr = new ArrayList<String>(); while(it.hasNext()){ key = (String) it.next();
     value = jsonObject.getString(key);
}

2、 {“info”:[{“goodsId”:”1234″,”goodsq”:”10″},{“goodsId”:”5678″,”goodsq”:”20″}]}

2、———————————————————————————————————————————————————————————————
JSONObject jsonObject
= new JSONObject(jsonString);   JSONArray jsonArray =jsonObject.getJSONArray(“info”);   for (int i = 0; i < jsonArray.length(); i++) {   JSONObject jo = jsonArray.getJSONObject(i);        System.out.println(jo.getString("goodsld"));        System.out.println(jo.getString("goodsq")); }

原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/19505.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论