文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

如何在Java中实现对象和Map之间的转换

2024-11-29 19:28

关注

本文将介绍几种不同的方法来实现Java对象和Map之间的相互转换,选择哪种方法取决于项目的具体需求和个人偏好。

方法一:使用Spring Framework的ReflectionUtils

Bean转为Map

Person person = new Person();
person.setAge(18);
person.setOpenid("123456");
person.setName("一安");
person.setSubName("公众号");
System.out.println(bean2Map(person));
System.out.println(bean2Map2(person));

public static Map bean2Map(Object object) {
    Map map = new HashMap<>();
    ReflectionUtils.doWithFields(object.getClass(), field -> {
        field.setAccessible(true);
        Object value = ReflectionUtils.getField(field, object);
        if (value != null) {
            map.put(field.getName(), value);
        }
    });
    return map;
}
public static Map bean2Map2(Object object) {
    Map map = new HashMap<>();
    Class clazz = object.getClass();
    Field[] fields = clazz.getDeclaredFields();
    for (Field field : fields) {
        field.setAccessible(true);
        try {
            Object value = field.get(object);
            if (value != null) {
                map.put(field.getName(), value);
            }
        } catch (IllegalAccessException e) {
            throw new RuntimeException("Error accessing field: " + field.getName(), e);
        }
    }
    return map;
}

Map转为Bean

Map map = new HashMap();
map.put("age", 18);
map.put("openid", "123456");
map.put("name", "一安");
map.put("subName", "公众号");
System.out.println(map2Bean(map, Person.class));
System.out.println(map2Bean2(map, Person.class));

public static  T map2Bean(Map map, Class clazz) throws IllegalAccessException, InstantiationException {
    T instance = clazz.newInstance();
    ReflectionUtils.doWithFields(clazz, field -> {
        field.setAccessible(true);
        if (map.containsKey(field.getName())) {
            ReflectionUtils.setField(field, instance, map.get(field.getName()));
        }
    });
    return instance;
}

public static  T map2Bean2(Map map, Class clazz) throws IllegalAccessException, InstantiationException {
    T instance = clazz.newInstance();
    Field[] fields = clazz.getDeclaredFields();
    for (Field field : fields) {
        field.setAccessible(true);
        if (map.containsKey(field.getName())) {
            field.set(instance, map.get(field.getName()));
        }
    }
    return instance;
}

方法二:使用Hutool工具


    cn.hutool
    hutool-all
    5.8.5

Bean转为Map

Person person = new Person();
person.setAge(18);
person.setOpenid("123456");
person.setName("一安");
person.setSubName("公众号");

Map map = BeanUtil.beanToMap(person);

Map转为Bean

Map map = new HashMap();
map.put("age", 18);
map.put("openid", "123456");
map.put("name", "一安");
map.put("subName", "公众号");

Person person = BeanUtil.toBean(map, Person.class);

方法三:使用Jackson工具

Bean转为Map

Person person = new Person();
person.setAge(18);
person.setOpenid("123456");
person.setName("一安");
person.setSubName("公众号");

System.out.println(bean2Map(person));

public static Map bean2Map(Object object) {
        ObjectMapper objectMapper = new ObjectMapper();
        return objectMapper.convertValue(object, new TypeReference>() {
        });
    }

Map转为Bean

Map map = new HashMap();
map.put("age", 18);
map.put("openid", "123456");
map.put("name", "一安");
map.put("subName", "公众号");

System.out.println(map2Bean(map, Person.class));

public static  T map2Bean(Map map, Class clazz){
    ObjectMapper objectMapper = new ObjectMapper();
    return objectMapper.convertValue(map, clazz);
}

方法四:使用Apache Commons Lang的BeanUtils


    org.apache.commons
    commons-lang3
    3.12.0 

Bean转为Map

Person person = new Person();
person.setAge(18);
person.setOpenid("123456");
person.setName("一安");
person.setSubName("公众号");
System.out.println(bean2Map(person));

public static Map bean2Map(Object object) {
    try {
        return BeanUtils.describe(object);
    } catch (Exception e) {
        throw new RuntimeException("Error converting object to map: " + e.getMessage(), e);
    }
}

Map转为Bean

Map map = new HashMap();
map.put("age", 18);
map.put("openid", "123456");
map.put("name", "一安");
map.put("subName", "公众号");
System.out.println(map2Bean(map, Person.class));

public static  T map2Bean(Map map, Class clazz) {
    try {
        T instance = clazz.newInstance();
        BeanUtils.populate(instance, map);
        return instance;
    } catch (Exception e) {
        throw new RuntimeException("Error converting map to object: " + e.getMessage(), e);
    }
}

方法五:使用fastjson工具


    com.alibaba
    fastjson
    1.2.83

Bean转为Map

Person person = new Person();
person.setAge(18);
person.setOpenid("123456");
person.setName("一安");
person.setSubName("公众号");

System.out.println(JSONObject.parseObject(JSONObject.toJSONString(person)));

Map转为Bean

Map map = new HashMap();
map.put("age", 18);
map.put("openid", "123456");
map.put("name", "一安");
map.put("subName", "公众号");

System.out.println(JSONObject.parseObject(JSONObject.toJSONString(map), Person.class));
来源:一安未来内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯