Maison > Java > javaDidacticiel > le corps du texte

Méthodes de conversion de classes encapsulées entre JavaBean et Map

高洛峰
Libérer: 2017-01-23 16:30:36
original
1612 Les gens l'ont consulté

Les exemples sont les suivants :

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 <E>
   * @param map
   *      map集合
   * @param key
   *      键对
   * @param defaultValue
   *      默认值
   * @return
   * @author jiqinlin
   */
  @SuppressWarnings({ "unchecked", "rawtypes" })
  public final static <E> 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 <T> List<T> map2Java(T javaBean, List<Map> mapList) {
    if(mapList == null || mapList.isEmpty()){
      return null;
    }
    List<T> objectList = new ArrayList<T>();
     
    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> 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;
  }
  
}
Copier après la connexion

Ce qui précède est la méthode complète d'encapsulation de conversion JavaBean et Map apportée par l'éditeur. J'espère que tout le monde soutiendra le site Web PHP chinois~

<.> Pour plus d'articles liés aux méthodes de conversion des classes d'encapsulation JavaBean et Map, veuillez faire attention au site Web PHP chinois !

Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal