Gson对泛型的解析
2017-09-19 本文已影响11人
_蘇芳_
新建一个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);