com.google.gson.JsonParseException: The JsonDeserializer MapTypeAdapter failed to deserialized json object。在我朋友那运行没问题 ,我这运行就报这个错
,这是代码
可是试试这种方式 :
不要用Map<String, Object>
用Map<String, String>
Map<String, String> resultMap2 = gson.fromJson( jsonStr, new TypeToken<Map<String, String>>() { }.getType());