I have the below Json file called details.json
{
"text": [
{
"id":"123",
"name":"John",
"age":"20"
},
{
"id":"234",
"name":"David",
"age":"21"
},
{
"id":"345",
"name":"July",
"age":"22"
}
]
}
I know little bit of parsing.I want to parse this Json file using CPP in BB10. Based on my requirement when clicked on a button only the FIRST ARRAY DETAILS will be displayed like only "123, John ,20". No need do display other array values. But I am getting the whole Json file values.