{"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();
}
それが正しいか?2 番目の JSON オブジェクトからデータを取得する方法がわかりません。私を助けてください。