您的json包含一个对象,而不是数组。更换
JSonArray mJsonArray = new JSonArray(jsonResult);
通过
JSonObject movieObject = new JSonObject(jsonResult); String title = movieObject.getString("Title");
您的json包含一个对象,而不是数组。更换
JSonArray mJsonArray = new JSonArray(jsonResult);
通过
JSonObject movieObject = new JSonObject(jsonResult); String title = movieObject.getString("Title");