JSON 和 Map的相同點就是 key,value的方式存儲的,json
而JSON精確的說鍵值只支持String(也能夠存數值,可是數值存進去,取出來仍是String),Map鍵值均可以存儲對象. code
public static void main(String[] args) throws JSONException {
JSONObject jsonObject = new JSONObject();
jsonObject.put("opcode", "-1");
jsonObject.put("msg", "11");
jsonObject.put("data", "111111");
System.out.println("json:"+jsonObject);
HashMap<String, Object> map= new HashMap<String,Object>();
map.put("opcode","2");
map.put("msg", "22");
map.put("data","222222");
System.out.println("map:"+map);
}對象