Home  >  Article  >  Java  >  Methods for converting encapsulated classes between JavaBean and Map

Methods for converting encapsulated classes between JavaBean and Map

高洛峰
高洛峰Original
2017-01-23 16:30:361474browse

The examples are as follows:

package com.ljq.util;
 
import java.beans.BeanInfo;
import java.beans.Introspector;
import java.beans.PropertyDescriptor;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
 
 
/**
 * Map工具类
 *
 * @author jqlin
 */
public class MapUtils {
 
  /**
   * 从map集合中获取属性值
   * 
   * @param 
   * @param map
   *      map集合
   * @param key
   *      键对
   * @param defaultValue
   *      默认值
   * @return
   * @author jiqinlin
   */
  @SuppressWarnings({ "unchecked", "rawtypes" })
  public final static  E get(Map map, Object key, E defaultValue) {
    Object o = map.get(key);
    if (o == null)
      return defaultValue;
    return (E) o;
  }
   
  /**
   * Map集合对象转化成 JavaBean集合对象
   * 
   * @param javaBean JavaBean实例对象
   * @param mapList Map数据集对象
   * @return
   * @author jqlin
   */
  @SuppressWarnings({ "rawtypes" })
  public static  List map2Java(T javaBean, List mapList) {
    if(mapList == null || mapList.isEmpty()){
      return null;
    }
    List objectList = new ArrayList();
     
    T object = null;
    for(Map map : mapList){
      if(map != null){
        object = map2Java(javaBean, map);
        objectList.add(object);
      }
    }
     
    return objectList;
     
  }
   
  /**
   * Map对象转化成 JavaBean对象
   * 
   * @param javaBean JavaBean实例对象
   * @param map Map对象
   * @return
   * @author jqlin
   */
  @SuppressWarnings({ "rawtypes","unchecked", "hiding" })
  public static  T map2Java(T javaBean, Map map) {
    try {
      // 获取javaBean属性
      BeanInfo beanInfo = Introspector.getBeanInfo(javaBean.getClass());
      // 创建 JavaBean 对象
      Object obj = javaBean.getClass().newInstance();
 
      PropertyDescriptor[] propertyDescriptors = beanInfo.getPropertyDescriptors();
      if (propertyDescriptors != null && propertyDescriptors.length > 0) {
        String propertyName = null; // javaBean属性名
        Object propertyValue = null; // javaBean属性值
        for (PropertyDescriptor pd : propertyDescriptors) {
          propertyName = pd.getName();
          if (map.containsKey(propertyName)) {
            propertyValue = map.get(propertyName);
            pd.getWriteMethod().invoke(obj, new Object[] { propertyValue });
          }
        }
        return (T) obj;
      }
    } catch (Exception e) {
      e.printStackTrace();
    }
 
    return null;
  }
 
  /**
   * JavaBean对象转化成Map对象
   * 
   * @param javaBean
   * @return
   * @author jqlin
   */
  @SuppressWarnings({ "rawtypes", "unchecked" })
  public static Map java2Map(Object javaBean) {
    Map map = new HashMap();
      
    try {
      // 获取javaBean属性
      BeanInfo beanInfo = Introspector.getBeanInfo(javaBean.getClass());
 
      PropertyDescriptor[] propertyDescriptors = beanInfo.getPropertyDescriptors();
      if (propertyDescriptors != null && propertyDescriptors.length > 0) {
        String propertyName = null; // javaBean属性名
        Object propertyValue = null; // javaBean属性值
        for (PropertyDescriptor pd : propertyDescriptors) {
          propertyName = pd.getName();
          if (!propertyName.equals("class")) {
            Method readMethod = pd.getReadMethod();
            propertyValue = readMethod.invoke(javaBean, new Object[0]);
            map.put(propertyName, propertyValue);
          }
        }
      }
       
    } catch (Exception e) {
      e.printStackTrace();
    } 
     
    return map;
  }
  
}

The above is the entire method of converting encapsulated classes between JavaBean and Map brought to you by the editor. I hope everyone will support the PHP Chinese website~

More For articles related to methods of converting JavaBean and Map encapsulated classes, please pay attention to the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn