新建一个type传入即可
Type type = new TypeToken<HashMap<String, Integer>>() {}.getType();
HashMap<String,Integer> map = new Gson().fromJson(json, type);
新建一个type传入即可
Type type = new TypeToken<HashMap<String, Integer>>() {}.getType();
HashMap<String,Integer> map = new Gson().fromJson(json, type);
本文标题:Gson对泛型的解析
本文链接:https://www.haomeiwen.com/subject/zyywsxtx.html
网友评论