net.sf.json.JSONObject
调用net.sf.json.JSONObject的put方法时,它不能设置null值 如 o.put('keys',null); 如果要设置空值,这样处理 o.put("keys","null");
org.json.JSONObject的处理方式 o.put("keys",JSONObject.NULL);