开发者

android, iterate over stringbuilder json?

开发者 https://www.devze.com 2023-02-12 07:54 出处:网络
So my webservice returns a bunch of JSONObjects, which is turned into a string by my stringbuilder. [{\"DateID\":\"2011-02-01\",\"DateName\":\"februari 2011\",\"I开发者_如何学GontName\":1102,\"Consum

So my webservice returns a bunch of JSONObjects, which is turned into a string by my stringbuilder.

[{"DateID":"2011-02-01","DateName":"februari 2011","I开发者_如何学GontName":1102,"Consumption":172,"Temperature":null},{"DateID":"2011-01-01","DateName":"januari 2011","IntName":1101,"Consumption":316,"Temperature":null}]

How can I get this String to be iterable så I can get all the name/values inside? I've tried all the examples I found here but I only get the first objecxt or no object at all (since JSONObjects can't start with a '[' char).

Regards


Ah, as soon as I posted I found this great example: JSON Parsing in Android

It's all in the JSONArray of course..

0

精彩评论

暂无评论...
验证码 换一张
取 消