String类型的数据是个很标准的key、value形式,可通过Gson转成Map类型

Gson gson = new Gson();
Map map = new HashMap();
map = gson.fromJson(jsonStr, map.getClass());//jsonStr需要转换的值

    com.google.code.gson
    gson
    2.8.0


gson在maven中的依赖。

 

知识是一点一点积累的。。。。

你可能感兴趣的:(日常积累)