服务器之家

服务器之家 > 正文

Javabean和map相互转化方法代码示例

时间:2021-01-01 12:54     来源/作者:chenxuejiakaren

在做导入的时候,遇到了需要将map对象转化 成javabean的问题,也就是说,不清楚javabean的内部字段排列,只知道map的 key代表javabean的字段名,value代表值。

那现在就需要用转化工具了。是通用的哦!

首先来看 JavaBean 转化成Map的方法:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[java]
/**
   * 将一个 JavaBean 对象转化为一个 Map
   * @param bean 要转化的JavaBean 对象
   * @return 转化出来的 Map 对象
   * @throws IntrospectionException 如果分析类属性失败
   * @throws IllegalAccessException 如果实例化 JavaBean 失败
   * @throws InvocationTargetException 如果调用属性的 setter 方法失败
   */
  @SuppressWarnings({ "rawtypes", "unchecked" })
  public static Map convertBean(Object bean)
      throws IntrospectionException, IllegalAccessException, InvocationTargetException {
    Class type = bean.getClass();
    Map returnMap = new HashMap();
    BeanInfo beanInfo = Introspector.getBeanInfo(type);
    PropertyDescriptor[] propertyDescriptors = beanInfo.getPropertyDescriptors();
    for (int i = 0; i< propertyDescriptors.length; i++) {
      PropertyDescriptor descriptor = propertyDescriptors[i];
      String propertyName = descriptor.getName();
      if (!propertyName.equals("class")) {
        Method readMethod = descriptor.getReadMethod();
        Object result = readMethod.invoke(bean, new Object[0]);
        if (result != null) {
          returnMap.put(propertyName, result);
        } else {
          returnMap.put(propertyName, "");
        }
      }
    }
    return returnMap;
  }

下面是将Map转化成JavaBean对象的方法:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[java]
/**
   * 将一个 Map 对象转化为一个 JavaBean
   * @param type 要转化的类型
   * @param map 包含属性值的 map
   * @return 转化出来的 JavaBean 对象
   * @throws IntrospectionException 如果分析类属性失败
   * @throws IllegalAccessException 如果实例化 JavaBean 失败
   * @throws InstantiationException 如果实例化 JavaBean 失败
   * @throws InvocationTargetException 如果调用属性的 setter 方法失败
   */
  @SuppressWarnings("rawtypes")
  public static Object convertMap(Class type, Map map)
      throws IntrospectionException, IllegalAccessException,
      InstantiationException, InvocationTargetException {
    BeanInfo beanInfo = Introspector.getBeanInfo(type); // 获取类属性
    Object obj = type.newInstance(); // 创建 JavaBean 对象
    // 给 JavaBean 对象的属性赋值
    PropertyDescriptor[] propertyDescriptors = beanInfo.getPropertyDescriptors();
    for (int i = 0; i< propertyDescriptors.length; i++) {
      PropertyDescriptor descriptor = propertyDescriptors[i];
      String propertyName = descriptor.getName();
 
      if (map.containsKey(propertyName)) {
        // 下面一句可以 try 起来,这样当一个属性赋值失败的时候就不会影响其他属性赋值。
        Object value = map.get(propertyName);
 
        Object[] args = new Object[1];
        args[0] = value;
 
        descriptor.getWriteMethod().invoke(obj, args);
      }
    }
    return obj;
  }

 

以上内容我测试过,是没有问题的,供大家参考学习。感谢大家对本站的支持。

原文链接:https://www.2cto.com/kf/201207/141981.html

标签:

相关文章

热门资讯

2022年最旺的微信头像大全 微信头像2022年最新版图片
2022年最旺的微信头像大全 微信头像2022年最新版图片 2022-01-10
蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整
蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整 2021-08-24
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
暖暖日本高清免费中文 暖暖在线观看免费完整版韩国
暖暖日本高清免费中文 暖暖在线观看免费完整版韩国 2021-05-08
返回顶部