借助fastjson 实体对象转map

复制代码
private Map<String, Object> object2Map(Object object){
        JSONObject jsonObject = (JSONObject) JSON.toJSON(object);
        Set<Entry<String,Object>> entrySet = jsonObject.entrySet();
        Map<String, Object> map=new HashMap<String,Object>();
        for (Entry<String, Object> entry : entrySet) {
            map.put(entry.getKey(), entry.getValue());
        }
        return map;
    }
复制代码

 

posted @   java渣渣  阅读(9172)  评论(0编辑  收藏  举报
努力加载评论中...
点击右上角即可分享
微信分享提示