码迷,mamicode.com
首页 > 其他好文 > 详细

将一个mapList转换为beanList

时间:2017-11-01 11:06:07      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:resultmap   static   object   stat   arraylist   array   keyset   throw   map   

public static <T> List<T> copyMapToBean(
   List<Map<String, Object>> resultMap, Class<T> cls) throws Exception {
  if (null == resultMap || resultMap.size() == 0 || null == cls) {
   return null;
  }
  // 结果集
  List<T> beanList = new ArrayList<T>();
  for (Map<String, Object> map : resultMap) {
   T bean = cls.newInstance();
   Set<String> keySet = map.keySet();
   for (String key : keySet) {
    BeanUtils.setProperty(bean, key, map.get(key));
   }

   beanList.add(bean);
  }

  return beanList;
 }

将一个mapList转换为beanList

标签:resultmap   static   object   stat   arraylist   array   keyset   throw   map   

原文地址:http://www.cnblogs.com/tangzeqi/p/7765348.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!