android,迭代stringbuilder json?

发布于 2024-10-18 16:46:29 字数 414 浏览 2 评论 0原文

所以我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

深海少女心 2024-10-25 16:46:29

啊,我一发帖就发现了这个很好的例子:
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..

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文