I have a Json data and which contains multiple JSON arrays and JSON Objects so i want to parse some of them in an android activity ,...
Example of JSON array and Json objects at here
So i want to call some of them in the android device.... i know how to parse but i want only some of contents ,..
I have the data like
{
"process":"done"
"one":1
"List": {
"Something": [
{
"Name": "John",
"phone": "test"
}
]
"details":"ok"
"two":2
"SomethingElse": [
{
"Name": "Smith",
"phone": "test"
}
]
}
}
Like that i have a Restful service and it has lot of data ,.. so if want to call "list" or "SomethingElse" jsonObjecs/arrays.... its not calling its strucking at starting,..