这应该对您有帮助。
编辑:
也许这就是您需要的:
ArrayList<String> stringArray = new ArrayList<String>();JSonArray jsonArray = new JSonArray();for(int i = 0, count = jsonArray.length(); i< count; i++){ try { JSonObject jsonObject = jsonArray.getJSonObject(i); stringArray.add(jsonObject.toString()); } catch (JSonException e) { e.printStackTrace(); }}


