在Android中获取JSON数组键

在Android中获取JSON数组键,第1张

在Android中获取JSON数组

上面的示例json数组,如何获取204、203和202?

不,当前的String

JSONObject
代替
JSONArray
。您应该使用JSONObject获取Iterator
。keys()如果内部JSONObject键动态为:

JSonObject issueObj = new JSonObject(jsonContent);Iterator iterator = issueObj.keys();   while(iterator.hasNext()){    String key = (String)iterator.next();    JSonObject issue = issueObj.getJSonObject(key);    //  get id from  issue        String _pubKey = issue.optString("id");    }


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5560397.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-14
下一篇 2022-12-14

发表评论

登录后才能评论

评论列表(0条)

保存