数据 map转json

//包文件名称

import org.codehaus.jackson.map.ObjectMapper;

//必须要创建一个新的对象

ObjectMapper objectMapper = new ObjectMapper();

//json数据和 想要转换的数据的类型
   Map list = objectMapper.readValue(
     json2, Map.class);

你可能感兴趣的:(数据 map转json)