Json解析Android应用程序

Json解析Android应用程序,第1张

概述完成XMLSAXParsing后,我正在我的应用程序中进行JSON解析.我在这里为你提供JsonResponse:{"menu":{"id":"file","value":"File","popup":{"menuitem":

完成XML SAX Parsing后,我正在我的应用程序中进行JSON解析.我在这里为你提供Json

Response : {"menu": {              "ID": "file",              "value": "file",              "popup": {                "menuitem": [                  {"value": "New", "onclick": "CreateNewDoc()"},                  {"value": "Open", "onclick": "OpenDoc()"},                  {"value": "Close", "onclick": "CloseDoc()"}                ]              }            }}

现在我已经提到了一个Json Parsing的例子,他们在其中创建了一个Jstring对象,我对该特定行有疑问,如下:

private String Jstring = "{\"menu\":    {\"ID\": \"file\", \"value\": \"file\", \"

请有人帮我说清楚.
完整示例的链接如下:

http://www.androidcompetencycenter.com/2009/10/json-parsing-in-android/

解决方法:

您可以从响应中获取JsON对象(我假设您知道如何处理响应):

String[] file = null;/* Make a JsON object from your response, yourResponse is a String containingthe whole response */JsONObject JsonObject = new JsONObject(yourResponse);/* Your "menu": array from your response */JsONArray infoArray = JsonObject.getJsONArray("menu"); /* If the array contains multiple items, loop itthrough the infoArray's size */for (int i = 0; i < infoArray.length(); i++) {          try {              //Get the value insIDe "ID"          file[i] = infoArray.getJsONObject(i).optString("ID");                              } catch (JsONException e) {            }       }
总结

以上是内存溢出为你收集整理的Json解析Android应用程序全部内容,希望文章能够帮你解决Json解析Android应用程序所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1101825.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存