我有一个 Json 代码:
{
"name":"My name",
"count_pl":{
"araw":"19 nieruchomo\u015bci",
"colliers":"20 nieruchomo\u015bci",
"knightfrank":"30 nieruchomo\u015bci",
"overall":"69 nieruchomo\u015bci"
},
"count_en":{
"araw":"19 estates",
"colliers":"20 estates",
"knightfrank":"30 estates",
"overall":"69 estates"
}
}
我有一个可以读取它的java代码:
JSONObject jsonObject = (JSONObject) obj;
String name = (String) jsonObject.get("name");
Log.i("Name", name);
如您所见,我可以轻松获得“名称”,但我该如何访问count_pl->araw
。