试试这个..
JSonArray jsonarray = new JSonArray(json);for (int i = 0; i < jsonarray.length(); i++) { JSonObject jsonobj = jsonarray.getJSonObject(i); System.out.println("categoryId : " + i + " = " + jsonobj.getString("categoryId")); System.out.println("Title : " + i + " = " + jsonobj.getString("Title")); System.out.println("songs : " + i + " = " + jsonobj.getString("songs"));}


