{"Sam":{"status":"available","classkey":"dotnet"}}
如何解析这种类型的json?
try {
JSONObject jObj = new JSONObject(json);
if(jObj != null){
domtdl = jObj.getString(dom);
try {
JSONObject c = new JSONObject(domtdl);
if(c != null){
status = c.getString(TAG_STATUS);
System.out.println(status);
}
} catch (JSONException e) {
e.printStackTrace();
}
}
} catch (JSONException e) {
e.printStackTrace();
}
这是正确的吗?我不知道如何从第二个 JSON 对象获取数据。请帮我。