赞
踩
Map<String, Integer> map = new HashMap<>();
map.put( "staff9", 1 );
map.put( "staff1", 3 );
System.out.println( map.toString() ); // 结果是 {staff9=1, staff1=3}
// JSONObject 是 com.alibaba.fastjson.JSONObject
System.out.println( JSONObject.toJSONString( map ) ); // 结果是 {"staff9":1,"staff1":3}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。