Map<String, String> map = Maps.newHashMap(); map.put("a", "1"); map.put("b", "2"); map.put("c", "3"); byte[] serialize = SerializationUtils.serialize(map); Object deserialize = SerializationUtils.deserialize(serialize); System.out.println(deserialize);
标签:SerializationUtils,deserialize,map,serialize,springframework,util,put,org From: https://www.cnblogs.com/ooo0/p/17751640.html