我有这样的json文件
[
{
"topic": "Example1",
"ref": {
"1": "Example Topic",
"2": "Topic"
},
"contact": [
{
"ref": [
1
],
"corresponding": true,
"name": "XYZ"
},
{
"ref": [
1
],
"name": "ZXY"
},
{
"ref": [
1
],
"name": "ABC"
},
{
"ref": [
1,
2
],
"name":"BCA"
}
] ,
"type": "Presentation"
}
]
我想解析ref
数组。我试过这个。但显示错误。
jsonArray.getJSONObject(index).getJSONArray("ref").getJSONObject(index).toString()
现在我的问题是
1)解析该数组内容的正确方法是什么。