JSONObject的包名为com.alibaba.fastjson.JSONObject,话不多说,直接就一行代码:
Map<String,Map<String,String>> map=JSONObject.parseObject(json.toJSONString(),new TypeReference<Map<String,Map<String,String>>>(){});
其中json表示com.alibaba.fastjson.JSONObject对象,new TypeReference<>(){}在中括号中填写要转换的数据类型,如上面转换为Map<String,Map<String,String>>的类型。