之前用jsonObject类一直没注意,今天发现我往jsonObject中put数据时,当value的值为null时,连key都不见了,而别的却可以。
然后看了一下封装的方法:
public JSONObject put(String key, Object value) throws JSONException {
if (key == null) {
throw new NullPointerException("Null key.");
}
if (value != null) {
testValidity(value);
this.map.put(key, value);
} else {
this.remove(key); //当value=null时,将key给remove掉
}
return this;
}
看到这时,我内心是崩溃的