码迷,mamicode.com
首页 > 其他好文 > 详细

Gson反射hashmap时数字转变为double的解决方法

时间:2015-05-06 13:26:27      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:

import com.google.gson.*

import java.lang.reflect.Type

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


Gson反射hashmap时数字转变为double的解决方法

标签:

原文地址:http://my.oschina.net/sphl520/blog/411236

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!