android,迭代stringbuilder json?
所以我的 web 服务返回一堆 JSONObject,它被我的 stringbuilder 转换成字符串。
[{"DateID":"2011-02-01","DateName":"februari 2011","IntName":1102,"Consumption":172,"Temperature":null},{"DateID":"2011-01-01","DateName":"januari 2011","IntName":1101,"Consumption":316,"Temperature":null}]
我怎样才能让这个字符串可迭代,以便我可以获取其中的所有名称/值?我已经尝试了在这里找到的所有示例,但我只得到第一个 objecxt 或根本没有对象(因为 JSONObjects 不能以“[”字符开头)。
问候
So my webservice returns a bunch of JSONObjects, which is turned into a string by my stringbuilder.
[{"DateID":"2011-02-01","DateName":"februari 2011","IntName":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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
啊,我一发帖就发现了这个很好的例子:
Android 中的 JSON 解析
当然,这一切都在 JSONArray 中。
Ah, as soon as I posted I found this great example:
JSON Parsing in Android
It's all in the JSONArray of course..