JSONObject

1、net.sf.json.JSONObject

JSONObject轉VO/bean

2、org.json.JSONObject

3、fastJSON

4、json與Null

org.json.JSONObject orgJSON = new org.json.JSONObject();
// The method put(String, Collection) is ambiguous for the type JSONObject
//orgJSON.put("null", null);
net.sf.json.JSONObject netJSON = new net.sf.json.JSONObject();
netJSON.put("null", null);

System.out.println("netJSON" + netJSON); // 控制檯輸出 : netJSON{}
相關文章
相關標籤/搜索