java 通过反射完成list到beanlist再把ben转换成map的过程

import java.beans.PropertyDescriptor;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;




public class Bean2MapUtil {

	private Bean2MapUtil(){}
	
	/**
	 * 把list转为beans
	 * @param result
	 * @return
	 */
	private static List<Object> toBeanList(List<List<String>> result,@SuppressWarnings("rawtypes") Class classType){
		List<Object> resulsBeans = new ArrayList<Object>();
		Object obj;
		try {
			Field[] fields = classType.getDeclaredFields();
			int i = 0;
			if(result.size()>=3){
				for(List<String> item:result){
					i++;
					if(i<=2)continue;
					obj = classType.newInstance();
					for (int j = 0; j < fields.length; j++) {
						//减三表示页面有三个隐藏域
						PropertyDescriptor pd = new PropertyDescriptor(fields[j].getName(), classType);
						Method wM = pd.getWriteMethod();//获得写方法
						wM.invoke(obj, item.get(j));//
					}
					resulsBeans.add(obj);
				}
			}
		} catch (Exception e) {
			e.printStackTrace();
		}
		return resulsBeans;
	}
	/**
	 * 把beanlist转化为MapList
	 * @return
	 */
	@SuppressWarnings("rawtypes")
	public static List<Map> beans2Maps(String filePath,Class classType){
		List<Map> ret = new ArrayList<Map>();
		ReadExcel03 e03 = new ReadExcel03();//读取excel
		ReadExcel07 e07 = new ReadExcel07();
		ReadExcelAdapter adapter = new ReadExcelAdapter(filePath, e03, e07);
		List<List<String>> result = adapter.readExcel();
		List<Object> resulsBeans = toBeanList(result,classType);
		try {
			for(int i= 0;i < resulsBeans.size();i++){
				Field[] fields = classType.getDeclaredFields();
				Map<String, Object> tempMap = new HashMap<String,Object>();
				for (int j = 0; j < fields.length; j++) {
					//减三表示页面有三个隐藏域
					PropertyDescriptor pd = new PropertyDescriptor(fields[j].getName(), classType);
					Method wM = pd.getReadMethod();//获得写方法
					tempMap.put(fields[j].getName(), wM.invoke(resulsBeans.get(i)));
				}
				ret.add(tempMap);
			}
		} catch (Exception e) {
			e.printStackTrace();
		}
		return ret;
	}
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值