java 对象转化为map

1.利用fastjson 把对象转化为map


        
            com.alibaba
            fastjson
            1.2.56
        

2.使用fastjson的ParseObject 方法

​
User user=new User();
        user.setId(1);
        user.setName("fuguowen");

        Map stringObjectMap = JSON.parseObject(JSON.toJSONString(user), new TypeReference>() {
        });
        System.out.println(stringObjectMap);

​

 

你可能感兴趣的:(Java)