标签: java json
我对JSONObject有一些问题。 我想在空的时候检查一下。例如:
{...., "type:"",...}.
当我{...., "type:null,...}.时,我可以检查以下内容..
{...., "type:null,...}.
JSONObject thenBy = !configSwitch.isNull("thenBy") ? configSwitch.getJSONObject("thenBy") : new JSONObject();
现在我想检查是否键入!=“”,我该怎么做?