我需要分析一些JSON對象,whihc看起來是這樣的:JSON對象解析
{"searchdata":{},"userdata":{"currency":"69","notificationCount":7}}
我用下面的代碼來實現這一目標:
JSONObject rootObj = new JSONObject(getResponse);
JSONObject jSearchData = rootObj.getJSONObject("searchdata");
JSONObject userData = jSearchData.getJSONObject("userdata");
String currency = userData.getString("currency");
我不能打印currency
對象來自上面的代碼。我不斷收到異常:
Exception: org.json.JSONException: No value for userdata
我不知道我在做什麼錯。
任何形式的幫助將不勝感激。
痛苦少):https://sites.google .com/site/gson/gson-user-guide#TOC-Using-Gson – MemLeak 2013-04-24 08:30:21