美文网首页
JSONObject遍历获取键值

JSONObject遍历获取键值

作者: GameProgramer | 来源:发表于2019-07-18 18:45 被阅读0次

    public static void main(String[] args) throws JSONException {
    String str = "{
    "10": "婚姻情感",
    "11": "教你脱单",
    "13": "带娃相亲",
    "14": "防骗指南"
    }";
    JSONObject jsonObject = new JSONObject(str);
    Iterator<String> it = jsonObject.keys();
    while(it.hasNext()){
    // 获得key
    String key = it.next();
    String value = jsonObject.getString(key);
    System.out.println("key: "+key+",value:"+value);
    }

    相关文章

      网友评论

          本文标题:JSONObject遍历获取键值

          本文链接:https://www.haomeiwen.com/subject/ewdrlctx.html