Map与JavaBean实体类之间的相互转化

package com.newcapec.util.map;

import java.beans.BeanInfo;
import java.beans.IntrospectionException;
import java.beans.Introspector;
import java.beans.PropertyDescriptor;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.HashMap;
import java.util.Map;

import org.apache.commons.beanutils.PropertyUtilsBean;

import com.newcapec.cloudpay.dao.po.HostUserInfo;
import com.newcapec.cloudpay.dao.po.WXUserInfo;

/**
 * @Title: Java MapJavaBean实体类之间的相互转化
 * @ClassName:MapBeanTransUtils.java
 * @Description:
 *
 * @Copyright 2016-2017  - Powered By 研发中心
 * @author: FLY
 * @date:20161223上午10:11:49
 * @version V1.0
 */
public class MapBeanTransUtils {

   /**
    * 将一个 JavaBean 对象转化为一个 Map
    * 
    * @param bean
    *            要转化的JavaBean 对象
    * @return 转化出来的 Map 对象
    * @throws IntrospectionException
    *             如果分析类属性失败
    * @throws IllegalAccessException
    *             如果实例化 JavaBean 失败
    * @throws InvocationTargetException
    *             如果调用属性的 setter 方法失败
    */
   @SuppressWarnings({ "rawtypes", "unchecked" })
   public static Map bean2Map(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
    * 
    * @param type
    *            要转化的类型
    * @param map
    *            包含属性值的 map
    * @return 转化出来的 JavaBean 对象
    * @throws IntrospectionException
    *             如果分析类属性失败
    * @throws IllegalAccessException
    *             如果实例化 JavaBean 失败
    * @throws InstantiationException
    *             如果实例化 JavaBean 失败
    * @throws InvocationTargetException
    *             如果调用属性的 setter 方法失败
    */
   @SuppressWarnings("rawtypes")
   public static Object map2Bean(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;
   }

   // JAVABEAN实体类转为map类型,然后返回一个map类型的值
   public static Map<String, Object> beanToMap(Object obj) {
      Map<String, Object> params = new HashMap<String, Object>(0);
      try {
         PropertyUtilsBean propertyUtilsBean = new PropertyUtilsBean();
         PropertyDescriptor[] descriptors = propertyUtilsBean.getPropertyDescriptors(obj);
         for (int i = 0; i < descriptors.length; i++) {
            String name = descriptors[i].getName();
            if (!"class".equals(name)) {
               params.put(name, propertyUtilsBean.getNestedProperty(obj, name));
            }
         }
      } catch (Exception e) {
         e.printStackTrace();
      }
      return params;
   }
   

   public static void main(String[] args)
         throws IllegalAccessException, InstantiationException, InvocationTargetException, IntrospectionException {
      // 获取分隔符
      // System.out.println(System.getProperty("path.separator"));

      // java对象拷贝之BeanUtils.copyProperties() 用法
      WXUserInfo wxUserInfo = new WXUserInfo();
      HostUserInfo hostUserInfo = new HostUserInfo();
      wxUserInfo.setCustomerCode("11");
      wxUserInfo.setCustomerId("id");
      wxUserInfo.setCustomerName("name");
      wxUserInfo.setName("aa");
      wxUserInfo.setStuNo("001");
      wxUserInfo.setUserId("uset");

      // BeanUtils.copyProperties(wxUserInfo, hostUserInfo);

      // System.out.println(hostUserInfo);

      // Map<String, String> hashMap = new HashMap<String, String>();

      Map convertBean = MapBeanTransUtils.bean2Map(wxUserInfo);
      
      Map<String, Object> beanToMap = MapBeanTransUtils.beanToMap(wxUserInfo);
      // MapBeanTransUtils.beanToMap(obj)
      System.out.println(beanToMap);
      
      // map 遍历
      
      for (Map.Entry<String, Object> entry : beanToMap.entrySet()) {
         System.out.println("属性名称:"+entry.getKey()+"------"+"值:"+entry.getValue());
      }
   }

}
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

萤火AI百宝箱

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值