Android JSON Parsing with multiple arrays -


i need parse json file multiple arrays. array in format:

{     "list": {         "something": [             {                 "name": "john",                 "phone": "test"             }         ]         "somethingelse": [             {                 "name": "smith",                 "phone": "test"             }         ]     } } 

problem don't know wold next array name. possible parse data arrays without name of , without changing structure of it?

thanks.

there comma missing in json after something value, apart that, can parse using json parser.


Comments

Popular posts from this blog

Line ending issue with Mercurial or Visual Studio -

R - Plot: How to format in 10-base scientific notation and put it text, mtex, title etc functions? -

validation - How to pass paramaters like unix into windows batch file -