解析json数组
Posted 巫师的蜕变
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解析json数组相关的知识,希望对你有一定的参考价值。
1 String json = "[{code:0,message:\‘success or error\‘,id:\"0001\",name:\"pic.jpg\"},{code:0,message:\‘success or error\‘,id:\"0001\",name:\"pic.jpg\"},{code:0,message:\‘success or error\‘,id:\"0001\",name:\"pic.jpg\"}]"; 2 net.sf.json.JSONArray jsonArr = net.sf.json.JSONArray.fromObject(jsonData); 3 for(int i=0;i<jsonArr.size();i++){ 4 net.sf.json.JSONObject job = jsonArr.getJSONObject(i); // 遍历 jsonarray 数组,把每一个对象转成 json 对象 5 System.out.println(job.get("name")); 6 System.out.println(job.get("url"));
}
以上是关于解析json数组的主要内容,如果未能解决你的问题,请参考以下文章
NSDebugDescription = "JSON 文本没有以数组或对象开头,并且允许未设置片段的选项。";
错误代码:错误域 = NSCocoaErrorDomain 代码 = 3840“JSON 文本没有以数组或对象和允许未设置片段的选项开头。”