完成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应用程序所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)