首页 > 其他 > 详细

解决gson解析long自动转为科学计数的问题

时间:2019-07-19 12:08:17      阅读:376      评论:0      收藏:0      [点我收藏+]

不废话,直接上代码:

public class GsonUtils {
    public static Gson getMapGson(){
        Gson gson=new GsonBuilder().registerTypeAdapter(Map.class, new JsonDeserializer<Map>() {
            public Map deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context)
                    throws JsonParseException{
                HashMap<String,Object> resultMap=new HashMap<>();
                JsonObject jsonObject = json.getAsJsonObject();
                Set<Map.Entry<String, JsonElement>> entrySet = jsonObject.entrySet();
                for (Map.Entry<String, JsonElement> entry : entrySet) {
                    resultMap.put(entry.getKey(),entry.getValue());
                }
                return resultMap;
            }
        }).create();
        return gson;
    }
}

使用方式

Gson gson = GsonUtils.getMapGson();

 

解决gson解析long自动转为科学计数的问题

原文:https://www.cnblogs.com/mignet/p/11211841.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!