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

java - Run a .jar on Heroku -

java - Jtable duplicate Rows -

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