easyexcel导入excel数据的通用办法

一、问题引入

easyexcel官网提供的导入比较麻烦,每个实体都需要注册监听器等等。我这里写了一个通用的处理类。可以简单快速的导入excel数据到数据库中。
getFilesSigle方法传入文件路径,read方法中List list = e.getList(fileToMultipartFile(file), CountEntitySoes.class,1,4); 1代表读取第二个sheet,4代表从第5行开始读取数据。
使用时将insert的mapper注入进来,替换对应的实体类。调用t01Read方法就行。我这里是为了方便,用的junit的test。
其他关于导入时的各种问题,详见官网https://alibaba-easyexcel.github.io/


import javax.annotation.Resource;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.lang.reflect.Field;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.List;
@SpringBootTest
public class SoesTest {

    private static final Logger LOGGER = LoggerFactory.getLogger(SoesTest.class);

    @Resource
    CountEntitySoesMapper countEntitySoesMapper;
    @Test
    public void t01Read() {
        System.out.println("sss");
       ArrayList<ExcelMidBean> excelMidBeans = new ArrayList<>();
            getFilesSigle("C:\\Users\\Administrator\\Desktop\\gangdong-client",excelMidBeans);
        System.out.println(excelMidBeans.size()+"ssss");
        for (ExcelMidBean excelMidBean : excelMidBeans) {
            read(excelMidBean.getFile());
        }

    }


    private void read(File file) {
        ExcelAnalysisHelper e = new ExcelAnalysisHelper();
        //List list = e.getList(FileUtil.fileToMultipartFile(file), CountPatenteeTypeAuthorizationMessage.class);

       List<CountEntitySoes> list = e.getList(fileToMultipartFile(file), CountEntitySoes.class,1,4);
       //setEntityOtherValue(list);
        list.forEach(System.out::println);
      insert(list);

    }
    private void insert(List<CountEntitySoes> ss) {
        ss.forEach(s->{
            countEntitySoesMapper.insert(s);
        });
       // countEntitySoesService.saveBatch(ss,500);
    }
    public static void getFilesSigle(String path, ArrayList<ExcelMidBean> excelMidBeans) {

        File file = new File(path);
        // 如果这个路径是文件夹
        if (file.isDirectory()) {
            // 获取路径下的所有文件
            File[] files = file.listFiles();
            for (int i = 0; i < files.length; i++) {
                // 如果还是文件夹 递归获取里面的文件 文件夹
                if (files[i].isDirectory()) {
                    getFilesSigle(files[i].getPath(),excelMidBeans);
                } else {
                    ExcelMidBean midBean = new ExcelMidBean();
                    midBean.setFile(files[i]);
                    excelMidBeans.add(midBean);
                }
            }

        } else {

            System.out.println("文件:" + file.getPath());

        }
    }
    public static MultipartFile fileToMultipartFile(File file) {
        FileItem fileItem = createFileItem(file);
        MultipartFile multipartFile = new CommonsMultipartFile(fileItem);
        return multipartFile;
    }
    private static FileItem createFileItem(File file) {
        FileItemFactory factory = new DiskFileItemFactory(16, null);
        FileItem item = factory.createItem("textField", "text/plain", true, file.getName());
        int bytesRead = 0;
        byte[] buffer = new byte[8192];
        try {
            FileInputStream fis = new FileInputStream(file);
            OutputStream os = item.getOutputStream();
            while ((bytesRead = fis.read(buffer, 0, 8192)) != -1) {
                os.write(buffer, 0, bytesRead);
            }
            os.close();
            fis.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
        return item;
    }

}

import com.alibaba.excel.EasyExcel;
import com.alibaba.excel.annotation.ExcelProperty;
import com.alibaba.excel.enums.CellExtraTypeEnum;
import com.alibaba.excel.metadata.CellExtra;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.util.CollectionUtils;
import org.springframework.web.multipart.MultipartFile;

import java.io.IOException;
import java.lang.reflect.Field;
import java.util.List;

/**
 * @program: demo-excel
 * @description:
 * @author: chen
 * @create: 2021-06-01 15:26
 **/
public class ExcelAnalysisHelper<T> {
    private static final Logger LOGGER = LoggerFactory.getLogger(ExcelAnalysisHelper.class);

    public List<T> getList(MultipartFile file, Class<T> clazz) {
        return getList(file, clazz, 0, 1);
    }

    public List<T> getList(MultipartFile file, Class<T> clazz, Integer sheetNo, Integer headRowNumber) {
        UploadDataListener<T> listener = new UploadDataListener<>(headRowNumber);
        try {
            EasyExcel.read(file.getInputStream(), clazz, listener).extraRead(CellExtraTypeEnum.MERGE).sheet(sheetNo).headRowNumber(headRowNumber).doRead();
        } catch (IOException e) {
            LOGGER.error(e.getMessage());
        }
        List<CellExtra> extraMergeInfoList = listener.getExtraMergeInfoList();
        if (CollectionUtils.isEmpty(extraMergeInfoList)) {
            return listener.getData();
        }
        List<T> data = explainMergeData(listener.getData(), extraMergeInfoList, headRowNumber);
        return data;
    }

    /**
     * 处理合并单元格
     *
     * @param data               解析数据
     * @param extraMergeInfoList 合并单元格信息
     * @param headRowNumber      起始行
     * @return 填充好的解析数据
     */
    private List<T> explainMergeData(List<T> data, List<CellExtra> extraMergeInfoList, Integer headRowNumber) {
//        循环所有合并单元格信息
        extraMergeInfoList.forEach(cellExtra -> {
            int firstRowIndex = cellExtra.getFirstRowIndex() - headRowNumber;
            int lastRowIndex = cellExtra.getLastRowIndex() - headRowNumber;
            int firstColumnIndex = cellExtra.getFirstColumnIndex();
            int lastColumnIndex = cellExtra.getLastColumnIndex();
//            获取初始值
            Object initValue = getInitValueFromList(firstRowIndex, firstColumnIndex, data);
//            设置值
            for (int i = firstRowIndex; i <= lastRowIndex; i++) {
                for (int j = firstColumnIndex; j <= lastColumnIndex; j++) {
                    setInitValueToList(initValue, i, j, data);
                }
            }
        });
        return data;
    }

    /**
     * 设置合并单元格的值
     *
     * @param filedValue  值
     * @param rowIndex    行
     * @param columnIndex 列
     * @param data        解析数据
     */
    public void setInitValueToList(Object filedValue, Integer rowIndex, Integer columnIndex, List<T> data) {
        T object = data.get(rowIndex);

        for (Field field : object.getClass().getDeclaredFields()) {
            //提升反射性能,关闭安全检查
            field.setAccessible(true);
            ExcelProperty annotation = field.getAnnotation(ExcelProperty.class);
            if (annotation != null) {
                if (annotation.index() == columnIndex) {
                    try {
                        field.set(object, filedValue);
                        break;
                    } catch (IllegalAccessException e) {
                        //throw new BizException(ResultCode.FAILURE, "解析数据时发生异常!");
                        System.out.println("解析数据时发生异常!");
                    }
                }
            }
        }
    }


    /**
     * 获取合并单元格的初始值
     * rowIndex对应list的索引
     * columnIndex对应实体内的字段
     *
     * @param firstRowIndex    起始行
     * @param firstColumnIndex 起始列
     * @param data             列数据
     * @return 初始值
     */
    private Object getInitValueFromList(Integer firstRowIndex, Integer firstColumnIndex, List<T> data) {
        Object filedValue = null;
        T object = data.get(firstRowIndex);
        for (Field field : object.getClass().getDeclaredFields()) {
            //提升反射性能,关闭安全检查
            field.setAccessible(true);
            ExcelProperty annotation = field.getAnnotation(ExcelProperty.class);
            if (annotation != null) {
                if (annotation.index() == firstColumnIndex) {
                    try {
                        filedValue = field.get(object);
                        break;
                    } catch (IllegalAccessException e) {
                        //throw new BizException(ResultCode.FAILURE, "解析数据时发生异常!");
                        System.out.println("解析数据时发生异常!");
                    }
                }
            }
        }
        return filedValue;
    }
}
import java.io.File;
import java.io.Serializable;

/**
 * @author xchen
 * @create 2021-06-17-15:15
 */
public class ExcelMidBean<T> implements Serializable {


    private File file;

    private Class<T> aClass;

    private T t;

    private String type;

    private String unit;

    private String month;

    private Integer sort;

    private Integer isCity;

    private Integer isArea;

    public ExcelMidBean() {
    }

    public ExcelMidBean(File file, String type, String unit, String month, Integer sort, Integer isCity, Integer isArea,Class<T> c) {
        this.file = file;
        this.type = type;
        this.unit = unit;
        this.month = month;
        this.sort = sort;
        this.isCity = isCity;
        this.isArea = isArea;
        this.aClass=c;
    }

    public File getFile() {
        return file;
    }

    public void setFile(File file) {
        this.file = file;
    }

    public String getType() {
        return type;
    }

    public void setType(String type) {
        this.type = type;
    }

    public String getUnit() {
        return unit;
    }

    public void setUnit(String unit) {
        this.unit = unit;
    }

    public String getMonth() {
        return month;
    }

    public void setMonth(String month) {
        this.month = month;
    }

    public Integer getSort() {
        return sort;
    }

    public void setSort(Integer sort) {
        this.sort = sort;
    }

    public Integer getIsCity() {
        return isCity;
    }

    public void setIsCity(Integer isCity) {
        this.isCity = isCity;
    }

    public Integer getIsArea() {
        return isArea;
    }

    public void setIsArea(Integer isArea) {
        this.isArea = isArea;
    }

    public Class<T> getaClass() {
        return aClass;
    }

    public void setaClass(Class<T> aClass) {
        this.aClass = aClass;
    }

    public T getT() {
        try {
            t=aClass.newInstance();
        } catch (InstantiationException e) {
            e.printStackTrace();
        } catch (IllegalAccessException e) {
            e.printStackTrace();
        }
        return t;
    }

    public void setT(T t) {
        this.t = t;
    }
}

  • 0
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值