bean 與 map 互轉.

package com.sprucetec.tms.distribute.utils;

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;

/**
 * bean 與 map 互轉.
 *
 * @author Yinqiang Du
 * @date 2016/10/8
 */
public class BeanToMapUtil {

    /**
     * 將一個 Map 對象轉化爲一個 JavaBean
     * @param type 要轉化的類型
     * @param map 包含屬性值的 map
     * @return 轉化出來的 JavaBean 對象
     * @throws IntrospectionException
     *             如果分析類屬性失敗
     * @throws IllegalAccessException
     *             如果實例化 JavaBean 失敗
     * @throws InstantiationException
     *             如果實例化 JavaBean 失敗
     * @throws InvocationTargetException
     *             如果調用屬性的 setter 方法失敗
     */
    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;
    }

    /**
     * 將一個 JavaBean 對象轉化爲一個  Map
     * @param bean 要轉化的JavaBean 對象
     * @return 轉化出來的  Map 對象
     * @throws IntrospectionException 如果分析類屬性失敗
     * @throws IllegalAccessException 如果實例化 JavaBean 失敗
     * @throws InvocationTargetException 如果調用屬性的 setter 方法失敗
     */
    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;
    }
}
發佈了29 篇原創文章 · 獲贊 4 · 訪問量 6萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章