如何使用 JSONObject 从此 json 选择数据
{
"antikguiden": {
"stores":[
{
"name": "Ninas Bruk & Brocante (Fd Isakssons Antik och Kuriosa)",
"category": "Antikaffär" },}
现在我想选择数据名称和数据名称。类别
显示在Android模拟器上。
我该如何编写代码?谢谢。
{
"antikguiden": {
"stores":[
{
"name": "Ninas Bruk & Brocante (Fd Isakssons Antik och Kuriosa)",
"category": "Antikaffär" },}
Now i want to select the data name & category
to show on Android Emulator.
How can I write the code? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我认为从这里您可以通过示例学习 http://www.androidcompetencycenter .com/2009/10/json-parsing-in-android/
但是,是的,马特是对的,它不是有效的 JSON
I think from here you can learn by example http://www.androidcompetencycenter.com/2009/10/json-parsing-in-android/
But, yeah, Matt is right, it's not a valid JSON
好的。我认为您没有发布完整的 JSON 字符串;
下面是一个有效的 JSON 字符串:
下面是如何在 Android 中解析它:
我还没有测试它,所以可能有一两个语法错误;但你就是这样做的。
OK. I don't think you posted the full JSON string;
Below is a valid JSON string:
Below is how to parse it in Android:
I haven't tested it, so there might be a syntax error or two; but that's how you do it.
如果你的字符串像下面这样。
为了使其像 James 提到的那样通用,请在获取 json 数组后使用循环。
If your string is like the one below.
To make it generalized as James has mentioned , use a loop, after getting json array.