このような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) その配列のコンテンツを解析する正しい方法は何ですか。