注意 map.toString() 和 JSONObject.toJSONString( map ) 的結果是有區別的

Map<String, Integer> map = new HashMap<>(); map.put( "staff9", 1 ); map.put( "staff1", 3 );json System.out.println( map.toString() );    // 結果是 {staff9=1, staff1=3}   ast   // JSONObject 是 com.alibaba
相關文章
相關標籤/搜索