当前的json字符串格式为:
[ //<<<< JSonArray { //<<<< JSonObject // other items here... }]此Json字符串内容
JSONArray作为root元素而不是
JSONObject。您将需要先将其转换为JSONArray,然后从中提取JSONObject:
JSonArray jsonObject = jParser.getJSonFromUrl(url);
也将
getJSONFromUrl方法返回类型更改为
JSONArray



