Re: [android-developers] How to parse this json

2013-12-10 Thread Harri Smått
Isn’t that a JSON array of JSON arrays? Should it be no problem to parse outmost JSON array, grab instances of inner JSON arrays and use JSONArray.getString(index) to retrieve the values. Hope I am not too badly mistaken :) — H On 10 Dec 2013, at 06:53, Arun Kumar K wrote: > [ > [ >

Re: [android-developers] How to parse this json

2013-12-10 Thread Justin Anderson
> > How to parse this json Write a json parser. Or use an existing parsing library, like gson. Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Mon, Dec 9, 2013 at 11:53 PM, Arun Kumar K wrote: > [ > [ > "strServiceToken", > "intVote

[android-developers] How to parse this json

2013-12-09 Thread Arun Kumar K
[ [ "strServiceToken", "intVoteNowMemberID", "intAbort", "strInstallURL", "strImageURL" ], [ "46D2BAB0-5AA0-481D-9D0A-B37C38CC962E", "2", "0", "", "http://xxx.xxx.com/VNImages/"; ] ] -- *Regards* *Arun