这是我的代码。
JSONObject jsono = new JSONObject(response);
JSONArray jarray = jsono.getJSONArray("restaurents");
if(!jarray.equals("null")) {
//District value is not null
Toast.makeText(getContext(), "not null", Toast.LENGTH_LONG).show();
}else {
Toast.makeText(getContext(), " null", Toast.LENGTH_LONG).show();
}
这是我的 json 回复。
{“状态”:“成功”,“餐厅”:空}