Object t=json.get("key");
当json数据中有key,对应的值为null时,debug显示t的类型是JSONNull,不能直接t==null判断,
需要这样:
if(t==null||JSONNull.getInstance().equals(t)){ }
导包net.sf.json.JSONNull
2022-10-13 15:39:30
Object t=json.get("key");
当json数据中有key,对应的值为null时,debug显示t的类型是JSONNull,不能直接t==null判断,
需要这样:
if(t==null||JSONNull.getInstance().equals(t)){ }
导包net.sf.json.JSONNull