美文网首页
Gson对泛型的解析

Gson对泛型的解析

作者: _蘇芳_ | 来源:发表于2017-09-19 12:46 被阅读11次

    新建一个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