91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java中bean與map怎么進行轉化

發布時間:2020-12-04 17:11:23 來源:億速云 閱讀:186 作者:Leah 欄目:編程語言

本篇文章為大家展示了Java中bean與map怎么進行轉化,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

首先來看 Java中Bean 轉化成Map的方法:

[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對象的方法:

[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; 
  } 

上述內容就是Java中bean與map怎么進行轉化,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

郧西县| 武鸣县| 古交市| 军事| 原平市| 酒泉市| 自贡市| 涞源县| 马边| 丹巴县| 阿拉善右旗| 大名县| 万源市| 南平市| 吴旗县| 屯留县| 赣州市| 江达县| 孟连| 温州市| 临湘市| 志丹县| 延川县| 长阳| 合作市| 嫩江县| 盐城市| 阳信县| 安阳县| 长宁区| 通辽市| 前郭尔| 九寨沟县| 阜新| 台南市| 横山县| 松阳县| 吉安县| 康乐县| 邵武市| 白银市|