我的 JSon 数组已返回,如
[
{"StudentID":"BS231",
"ChildName":"Vishesh Malhotra",
"ClassName":"4th Class",
"Attendance":false},
{"StudentID":"BS233",
"ChildName":"Anisha Malhotra",
"ClassName":"6th Class",
"Attendance":false
}
]
我想提取它,我知道我可以将它放入 JSONObject 进行初始化,但是现在使用 optJSONArray 函数时我没有要提取的数组名称
JSONObject jsonResponse = new JSONObject(result);
JSONArray data = jsonResponse.optJSONArray("ArrayNameWhichIsMissing");
请告诉我如何提取该数组。