我今天碰到的情况是
String str=" ";
Map<xxxxx,xxxx> map =((Map<xxxx, xxxx>)) JSONObject.parseObject(str, Map.class);
这种情况会报错
解决方法把强转去掉就行
Map map = JSONObject.parseObject(str, Map.class);
我今天碰到的情况是
String str=" ";
Map<xxxxx,xxxx> map =((Map<xxxx, xxxx>)) JSONObject.parseObject(str, Map.class);
这种情况会报错
解决方法把强转去掉就行
Map map = JSONObject.parseObject(str, Map.class);