Easyexcel(8-通用工具类)

打印 上一主题 下一主题

主题 933|帖子 933|积分 2799

EasyExcelUtils

提供常见的文件同步和异步读取、文件导出、模板添补、自定义表头、自定义内容、从指定行开始读取数据、多Sheet导出等方法
  1. public class EasyExcelUtils {
  2.     /**
  3.      * 同步无模型读(默认读取sheet0,从第2行开始读)
  4.      *
  5.      * @param filePath excel文件的绝对路径
  6.      */
  7.     public static List<Map<Integer, String>> syncRead(String filePath) {
  8.         return EasyExcelFactory.read(filePath).sheet().doReadSync();
  9.     }
  10.     /**
  11.      * 同步无模型读(默认读取sheet0,从第2行开始读)
  12.      *
  13.      * @param inputStream excel文件的输入流
  14.      */
  15.     public static List<Map<Integer, String>> syncRead(InputStream inputStream) {
  16.         return EasyExcelFactory.read(inputStream).sheet().doReadSync();
  17.     }
  18.     /**
  19.      * 同步无模型读(默认读取sheet0,从第2行开始读)
  20.      *
  21.      * @param file excel文件
  22.      */
  23.     public static List<Map<Integer, String>> syncRead(File file) {
  24.         return EasyExcelFactory.read(file).sheet().doReadSync();
  25.     }
  26.     /**
  27.      * 同步无模型读(自定义读取sheetX,从第2行开始读)
  28.      *
  29.      * @param filePath excel文件的绝对路径
  30.      * @param sheetNo  sheet页号,从0开始
  31.      */
  32.     public static List<Map<Integer, String>> syncRead(String filePath, Integer sheetNo) {
  33.         return EasyExcelFactory.read(filePath).sheet(sheetNo).doReadSync();
  34.     }
  35.     /**
  36.      * 同步无模型读(自定义读取sheetX,从第2行开始读)
  37.      *
  38.      * @param inputStream excel文件的输入流
  39.      * @param sheetNo  sheet页号,从0开始
  40.      */
  41.     public static List<Map<Integer, String>> syncRead(InputStream inputStream, Integer sheetNo) {
  42.         return EasyExcelFactory.read(inputStream).sheet(sheetNo).doReadSync();
  43.     }
  44.     /**
  45.      * 同步无模型读(自定义读取sheetX,从第2行开始读)
  46.      *
  47.      * @param file excel文件
  48.      * @param sheetNo  sheet页号,从0开始
  49.      */
  50.     public static List<Map<Integer, String>> syncRead(File file, Integer sheetNo) {
  51.         return EasyExcelFactory.read(file).sheet(sheetNo).doReadSync();
  52.     }
  53.     /**
  54.      * 同步无模型读(指定sheet和表头占的行数)
  55.      *
  56.      * @param filePath
  57.      * @param sheetNo    sheet页号,从0开始
  58.      * @param headRowNum 表头占的行数,从0开始(如果要连表头一起读出来则传0)
  59.      */
  60.     public static List<Map<Integer, String>> syncRead(String filePath, Integer sheetNo, Integer headRowNum) {
  61.         return EasyExcelFactory.read(filePath).sheet(sheetNo).headRowNumber(headRowNum).doReadSync();
  62.     }
  63.     /**
  64.      * 同步无模型读(指定sheet和表头占的行数)
  65.      *
  66.      * @param inputStream
  67.      * @param sheetNo     sheet页号,从0开始
  68.      * @param headRowNum  表头占的行数,从0开始(如果要连表头一起读出来则传0)
  69.      */
  70.     public static List<Map<Integer, String>> syncRead(InputStream inputStream, Integer sheetNo, Integer headRowNum) {
  71.         return EasyExcelFactory.read(inputStream).sheet(sheetNo).headRowNumber(headRowNum).doReadSync();
  72.     }
  73.     /**
  74.      * 同步无模型读(指定sheet和表头占的行数)
  75.      *
  76.      * @param file
  77.      * @param sheetNo    sheet页号,从0开始
  78.      * @param headRowNum 表头占的行数,从0开始(如果要连表头一起读出来则传0)
  79.      */
  80.     public static List<Map<Integer, String>> syncRead(File file, Integer sheetNo, Integer headRowNum) {
  81.         return EasyExcelFactory.read(file).sheet(sheetNo).headRowNumber(headRowNum).doReadSync();
  82.     }
  83.     /**
  84.      * 同步按模型读(默认读取sheet0,从第2行开始读)
  85.      *
  86.      * @param filePath
  87.      * @param clazz    模型的类类型(excel数据会按该类型转换成对象)
  88.      */
  89.     public static <T> List<T> syncReadModel(String filePath, Class clazz) {
  90.         return EasyExcelFactory.read(filePath).sheet().head(clazz).doReadSync();
  91.     }
  92.     /**
  93.      * 同步按模型读(默认读取sheet0,从第2行开始读)
  94.      *
  95.      * @param inputStream
  96.      * @param clazz    模型的类类型(excel数据会按该类型转换成对象)
  97.      */
  98.     public static <T> List<T> syncReadModel(InputStream inputStream, Class clazz) {
  99.         return EasyExcelFactory.read(inputStream).sheet().head(clazz).doReadSync();
  100.     }
  101.     /**
  102.      * 同步按模型读(默认读取sheet0,从第2行开始读)
  103.      *
  104.      * @param file
  105.      * @param clazz    模型的类类型(excel数据会按该类型转换成对象)
  106.      */
  107.     public static <T> List<T> syncReadModel(File file, Class clazz) {
  108.         return EasyExcelFactory.read(file).sheet().head(clazz).doReadSync();
  109.     }
  110.     /**
  111.      * 同步按模型读(默认表头占一行,从第2行开始读)
  112.      *
  113.      * @param filePath
  114.      * @param clazz    模型的类类型(excel数据会按该类型转换成对象)
  115.      * @param sheetNo  sheet页号,从0开始
  116.      */
  117.     public static <T> List<T> syncReadModel(String filePath, Class clazz, Integer sheetNo) {
  118.         return EasyExcelFactory.read(filePath).sheet(sheetNo).head(clazz).doReadSync();
  119.     }
  120.     /**
  121.      * 同步按模型读(默认表头占一行,从第2行开始读)
  122.      *
  123.      * @param inputStream
  124.      * @param clazz    模型的类类型(excel数据会按该类型转换成对象)
  125.      * @param sheetNo  sheet页号,从0开始
  126.      */
  127.     public static <T> List<T> syncReadModel(InputStream inputStream, Class clazz, Integer sheetNo) {
  128.         return EasyExcelFactory.read(inputStream).sheet(sheetNo).head(clazz).doReadSync();
  129.     }
  130.     /**
  131.      * 同步按模型读(默认表头占一行,从第2行开始读)
  132.      *
  133.      * @param file
  134.      * @param clazz    模型的类类型(excel数据会按该类型转换成对象)
  135.      * @param sheetNo  sheet页号,从0开始
  136.      */
  137.     public static <T> List<T> syncReadModel(File file, Class clazz, Integer sheetNo) {
  138.         return EasyExcelFactory.read(file).sheet(sheetNo).head(clazz).doReadSync();
  139.     }
  140.     /**
  141.      * 同步按模型读(指定sheet和表头占的行数)
  142.      *
  143.      * @param filePath
  144.      * @param clazz      模型的类类型(excel数据会按该类型转换成对象)
  145.      * @param sheetNo    sheet页号,从0开始
  146.      * @param headRowNum 表头占的行数,从0开始(如果要连表头一起读出来则传0)
  147.      */
  148.     public static <T> List<T> syncReadModel(String filePath, Class clazz, Integer sheetNo, Integer headRowNum) {
  149.         return EasyExcelFactory.read(filePath).sheet(sheetNo).headRowNumber(headRowNum).head(clazz).doReadSync();
  150.     }
  151.     /**
  152.      * 同步按模型读(指定sheet和表头占的行数)
  153.      *
  154.      * @param inputStream
  155.      * @param clazz       模型的类类型(excel数据会按该类型转换成对象)
  156.      * @param sheetNo     sheet页号,从0开始
  157.      * @param headRowNum  表头占的行数,从0开始(如果要连表头一起读出来则传0)
  158.      */
  159.     public static <T> List<T> syncReadModel(InputStream inputStream, Class clazz, Integer sheetNo, Integer headRowNum) {
  160.         return EasyExcelFactory.read(inputStream).sheet(sheetNo).headRowNumber(headRowNum).head(clazz).doReadSync();
  161.     }
  162.     /**
  163.      * 同步按模型读(指定sheet和表头占的行数)
  164.      *
  165.      * @param file
  166.      * @param clazz      模型的类类型(excel数据会按该类型转换成对象)
  167.      * @param sheetNo    sheet页号,从0开始
  168.      * @param headRowNum 表头占的行数,从0开始(如果要连表头一起读出来则传0)
  169.      */
  170.     public static <T> List<T> syncReadModel(File file, Class clazz, Integer sheetNo, Integer headRowNum) {
  171.         return EasyExcelFactory.read(file).sheet(sheetNo).headRowNumber(headRowNum).head(clazz).doReadSync();
  172.     }
  173.     /**
  174.      * 异步无模型读(默认读取sheet0,从第2行开始读)
  175.      *
  176.      * @param excelListener 监听器,在监听器中可以处理行数据LinkedHashMap,表头数据,异常处理等
  177.      * @param filePath      表头占的行数,从0开始(如果要连表头一起读出来则传0)
  178.      */
  179.     public static <T> void asyncRead(String filePath, AnalysisEventListener<T> excelListener) {
  180.         EasyExcelFactory.read(filePath, excelListener).sheet().doRead();
  181.     }
  182.     /**
  183.      * 异步无模型读(默认读取sheet0,从第2行开始读)
  184.      *
  185.      * @param excelListener 监听器,在监听器中可以处理行数据LinkedHashMap,表头数据,异常处理等
  186.      * @param inputStream      表头占的行数,从0开始(如果要连表头一起读出来则传0)
  187.      */
  188.     public static <T> void asyncRead(InputStream inputStream, AnalysisEventListener<T> excelListener) {
  189.         EasyExcelFactory.read(inputStream, excelListener).sheet().doRead();
  190.     }
  191.     /**
  192.      * 异步无模型读(默认读取sheet0,从第2行开始读)
  193.      *
  194.      * @param excelListener 监听器,在监听器中可以处理行数据LinkedHashMap,表头数据,异常处理等
  195.      * @param file      表头占的行数,从0开始(如果要连表头一起读出来则传0)
  196.      */
  197.     public static <T> void asyncRead(File file, AnalysisEventListener<T> excelListener) {
  198.         EasyExcelFactory.read(file, excelListener).sheet().doRead();
  199.     }
  200.     /**
  201.      * 异步无模型读(默认表头占一行,从第2行开始读)
  202.      *
  203.      * @param filePath      表头占的行数,从0开始(如果要连表头一起读出来则传0)
  204.      * @param excelListener 监听器,在监听器中可以处理行数据LinkedHashMap,表头数据,异常处理等
  205.      * @param sheetNo       sheet页号,从0开始
  206.      */
  207.     public static <T> void asyncRead(String filePath, AnalysisEventListener<T> excelListener, Integer sheetNo) {
  208.         EasyExcelFactory.read(filePath, excelListener).sheet(sheetNo).doRead();
  209.     }
  210.     /**
  211.      * 异步无模型读(默认表头占一行,从第2行开始读)
  212.      *
  213.      * @param inputStream      表头占的行数,从0开始(如果要连表头一起读出来则传0)
  214.      * @param excelListener 监听器,在监听器中可以处理行数据LinkedHashMap,表头数据,异常处理等
  215.      * @param sheetNo       sheet页号,从0开始
  216.      */
  217.     public static <T> void asyncRead(InputStream inputStream, AnalysisEventListener<T> excelListener, Integer sheetNo) {
  218.         EasyExcelFactory.read(inputStream, excelListener).sheet(sheetNo).doRead();
  219.     }
  220.     /**
  221.      * 异步无模型读(默认表头占一行,从第2行开始读)
  222.      *
  223.      * @param file      表头占的行数,从0开始(如果要连表头一起读出来则传0)
  224.      * @param excelListener 监听器,在监听器中可以处理行数据LinkedHashMap,表头数据,异常处理等
  225.      * @param sheetNo       sheet页号,从0开始
  226.      */
  227.     public static <T> void asyncRead(File file, AnalysisEventListener<T> excelListener, Integer sheetNo) {
  228.         EasyExcelFactory.read(file, excelListener).sheet(sheetNo).doRead();
  229.     }
  230.     /**
  231.      * 异步无模型读(指定sheet和表头占的行数)
  232.      *
  233.      * @param filePath
  234.      * @param excelListener 监听器,在监听器中可以处理行数据LinkedHashMap,表头数据,异常处理等
  235.      * @param sheetNo       sheet页号,从0开始
  236.      * @param headRowNum    表头占的行数,从0开始(如果要连表头一起读出来则传0)
  237.      * @return
  238.      */
  239.     public static <T> void asyncRead(String filePath, AnalysisEventListener<T> excelListener, Integer sheetNo, Integer headRowNum) {
  240.         EasyExcelFactory.read(filePath, excelListener).sheet(sheetNo).headRowNumber(headRowNum).doRead();
  241.     }
  242.     /**
  243.      * 异步无模型读(指定sheet和表头占的行数)
  244.      *
  245.      * @param inputStream
  246.      * @param excelListener 监听器,在监听器中可以处理行数据LinkedHashMap,表头数据,异常处理等
  247.      * @param sheetNo       sheet页号,从0开始
  248.      * @param headRowNum    表头占的行数,从0开始(如果要连表头一起读出来则传0)
  249.      */
  250.     public static <T> void asyncRead(InputStream inputStream, AnalysisEventListener<T> excelListener, Integer sheetNo, Integer headRowNum) {
  251.         EasyExcelFactory.read(inputStream, excelListener).sheet(sheetNo).headRowNumber(headRowNum).doRead();
  252.     }
  253.     /**
  254.      * 异步无模型读(指定sheet和表头占的行数)
  255.      *
  256.      * @param file
  257.      * @param excelListener 监听器,在监听器中可以处理行数据LinkedHashMap,表头数据,异常处理等
  258.      * @param sheetNo       sheet页号,从0开始
  259.      * @param headRowNum    表头占的行数,从0开始(如果要连表头一起读出来则传0)
  260.      */
  261.     public static <T> void asyncRead(File file, AnalysisEventListener<T> excelListener, Integer sheetNo, Integer headRowNum) {
  262.         EasyExcelFactory.read(file, excelListener).sheet(sheetNo).headRowNumber(headRowNum).doRead();
  263.     }
  264.     /**
  265.      * 异步按模型读取(默认读取sheet0,从第2行开始读)
  266.      *
  267.      * @param filePath
  268.      * @param excelListener 监听器,在监听器中可以处理行数据LinkedHashMap,表头数据,异常处理等
  269.      * @param clazz         模型的类类型(excel数据会按该类型转换成对象)
  270.      */
  271.     public static <T> void asyncReadModel(String filePath, AnalysisEventListener<T> excelListener, Class clazz) {
  272.         EasyExcelFactory.read(filePath, clazz, excelListener).sheet().doRead();
  273.     }
  274.     /**
  275.      * 异步按模型读取(默认读取sheet0,从第2行开始读)
  276.      *
  277.      * @param inputStream
  278.      * @param excelListener 监听器,在监听器中可以处理行数据LinkedHashMap,表头数据,异常处理等
  279.      * @param clazz         模型的类类型(excel数据会按该类型转换成对象)
  280.      */
  281.     public static <T> void asyncReadModel(InputStream inputStream, AnalysisEventListener<T> excelListener, Class clazz) {
  282.         EasyExcelFactory.read(inputStream, clazz, excelListener).sheet().doRead();
  283.     }
  284.     /**
  285.      * 异步按模型读取(默认读取sheet0,从第2行开始读)
  286.      *
  287.      * @param file
  288.      * @param excelListener 监听器,在监听器中可以处理行数据LinkedHashMap,表头数据,异常处理等
  289.      * @param clazz         模型的类类型(excel数据会按该类型转换成对象)
  290.      */
  291.     public static <T> void asyncReadModel(File file, AnalysisEventListener<T> excelListener, Class clazz) {
  292.         EasyExcelFactory.read(file, clazz, excelListener).sheet().doRead();
  293.     }
  294.     /**
  295.      * 异步按模型读取(默认表头占一行,从第2行开始读)
  296.      *
  297.      * @param filePath
  298.      * @param excelListener 监听器,在监听器中可以处理行数据LinkedHashMap,表头数据,异常处理等
  299.      * @param clazz         模型的类类型(excel数据会按该类型转换成对象)
  300.      * @param sheetNo       sheet页号,从0开始
  301.      */
  302.     public static <T> void asyncReadModel(String filePath, AnalysisEventListener<T> excelListener, Class clazz, Integer sheetNo) {
  303.         EasyExcelFactory.read(filePath, clazz, excelListener).sheet(sheetNo).doRead();
  304.     }
  305.     /**
  306.      * 异步按模型读取(默认表头占一行,从第2行开始读)
  307.      *
  308.      * @param inputStream
  309.      * @param excelListener 监听器,在监听器中可以处理行数据LinkedHashMap,表头数据,异常处理等
  310.      * @param clazz         模型的类类型(excel数据会按该类型转换成对象)
  311.      * @param sheetNo       sheet页号,从0开始
  312.      */
  313.     public static <T> void asyncReadModel(InputStream inputStream, AnalysisEventListener<T> excelListener, Class clazz, Integer sheetNo) {
  314.         EasyExcelFactory.read(inputStream, clazz, excelListener).sheet(sheetNo).doRead();
  315.     }
  316.     /**
  317.      * 异步按模型读取(默认表头占一行,从第2行开始读)
  318.      *
  319.      * @param file
  320.      * @param excelListener 监听器,在监听器中可以处理行数据LinkedHashMap,表头数据,异常处理等
  321.      * @param clazz         模型的类类型(excel数据会按该类型转换成对象)
  322.      * @param sheetNo       sheet页号,从0开始
  323.      */
  324.     public static <T> void asyncReadModel(File file, AnalysisEventListener<T> excelListener, Class clazz, Integer sheetNo) {
  325.         EasyExcelFactory.read(file, clazz, excelListener).sheet(sheetNo).doRead();
  326.     }
  327.     /**
  328.      * 异步按模型读取
  329.      *
  330.      * @param filePath
  331.      * @param excelListener 监听器,在监听器中可以处理行数据LinkedHashMap,表头数据,异常处理等
  332.      * @param clazz         模型的类类型(excel数据会按该类型转换成对象)
  333.      * @param sheetNo       sheet页号,从0开始
  334.      * @param headRowNum    表头占的行数,从0开始(如果要连表头一起读出来则传0)
  335.      */
  336.     public static <T> void asyncReadModel(String filePath, AnalysisEventListener<T> excelListener, Class clazz, Integer sheetNo, Integer headRowNum) {
  337.         EasyExcelFactory.read(filePath, clazz, excelListener).sheet(sheetNo).headRowNumber(headRowNum).doRead();
  338.     }
  339.     /**
  340.      * 异步按模型读取
  341.      *
  342.      * @param inputStream
  343.      * @param excelListener 监听器,在监听器中可以处理行数据LinkedHashMap,表头数据,异常处理等
  344.      * @param clazz         模型的类类型(excel数据会按该类型转换成对象)
  345.      * @param sheetNo       sheet页号,从0开始
  346.      * @param headRowNum    表头占的行数,从0开始(如果要连表头一起读出来则传0)
  347.      */
  348.     public static <T> void asyncReadModel(InputStream inputStream, AnalysisEventListener<T> excelListener, Class clazz, Integer sheetNo, Integer headRowNum) {
  349.         EasyExcelFactory.read(inputStream, clazz, excelListener).sheet(sheetNo).headRowNumber(headRowNum).doRead();
  350.     }
  351.     /**
  352.      * 异步按模型读取
  353.      *
  354.      * @param file
  355.      * @param excelListener 监听器,在监听器中可以处理行数据LinkedHashMap,表头数据,异常处理等
  356.      * @param clazz         模型的类类型(excel数据会按该类型转换成对象)
  357.      * @param sheetNo       sheet页号,从0开始
  358.      * @param headRowNum    表头占的行数,从0开始(如果要连表头一起读出来则传0)
  359.      */
  360.     public static <T> void asyncReadModel(File file, AnalysisEventListener<T> excelListener, Class clazz, Integer sheetNo, Integer headRowNum) {
  361.         EasyExcelFactory.read(file, clazz, excelListener).sheet(sheetNo).headRowNumber(headRowNum).doRead();
  362.     }
  363.     /**
  364.      * 无模板写文件
  365.      *
  366.      * @param filePath
  367.      * @param head     表头数据
  368.      * @param data     表内容数据
  369.      */
  370.     public static void write(String filePath, List<List<String>> head, List<List<Object>> data) {
  371.         EasyExcel.write(filePath).head(head).sheet().doWrite(data);
  372.     }
  373.     /**
  374.      * 无模板写文件
  375.      *
  376.      * @param outputStream
  377.      * @param head     表头数据
  378.      * @param data     表内容数据
  379.      */
  380.     public static void write(OutputStream outputStream, List<List<String>> head, List<List<Object>> data) {
  381.         EasyExcel.write(outputStream).head(head).sheet().doWrite(data);
  382.     }
  383.     /**
  384.      * 无模板写文件
  385.      *
  386.      * @param filePath
  387.      * @param head      表头数据
  388.      * @param data      表内容数据
  389.      * @param sheetNo   sheet页号,从0开始
  390.      */
  391.     public static void write(String filePath, List<List<String>> head, List<List<Object>> data, Integer sheetNo) {
  392.         EasyExcel.write(filePath).head(head).sheet(sheetNo).doWrite(data);
  393.     }
  394.     /**
  395.      * 无模板写文件
  396.      *
  397.      * @param outputStream
  398.      * @param head      表头数据
  399.      * @param data      表内容数据
  400.      * @param sheetNo   sheet页号,从0开始
  401.      */
  402.     public static void write(OutputStream outputStream, List<List<String>> head, List<List<Object>> data, Integer sheetNo) {
  403.         EasyExcel.write(outputStream).head(head).sheet(sheetNo).doWrite(data);
  404.     }
  405.     /**
  406.      * 无模板写文件
  407.      *
  408.      * @param filePath
  409.      * @param head      表头数据
  410.      * @param data      表内容数据
  411.      * @param sheetNo   sheet页号,从0开始
  412.      * @param sheetName sheet名称
  413.      */
  414.     public static void write(String filePath, List<List<String>> head, List<List<Object>> data, Integer sheetNo, String sheetName) {
  415.         EasyExcel.write(filePath).head(head).sheet(sheetNo, sheetName).doWrite(data);
  416.     }
  417.     /**
  418.      * 无模板写文件
  419.      *
  420.      * @param outputStream
  421.      * @param head      表头数据
  422.      * @param data      表内容数据
  423.      * @param sheetNo   sheet页号,从0开始
  424.      * @param sheetName sheet名称
  425.      */
  426.     public static void write(OutputStream outputStream, List<List<String>> head, List<List<Object>> data, Integer sheetNo, String sheetName) {
  427.         EasyExcel.write(outputStream).head(head).sheet(sheetNo, sheetName).doWrite(data);
  428.     }
  429.     /**
  430.      * 根据excel模板文件写入文件
  431.      *
  432.      * @param filePath
  433.      * @param templateFileName
  434.      * @param data
  435.      */
  436.     public static void writeTemplate(String filePath, String templateFileName, List data) {
  437.         EasyExcel.write(filePath).withTemplate(templateFileName).sheet().doFill(data);
  438.     }
  439.     /**
  440.      * 根据excel模板文件写入文件
  441.      *
  442.      * @param outputStream
  443.      * @param templateFileName
  444.      * @param data
  445.      */
  446.     public static void writeTemplate(OutputStream outputStream, String templateFileName, List data) {
  447.         EasyExcel.write(outputStream).withTemplate(templateFileName).sheet().doFill(data);
  448.     }
  449.    
  450.     /**
  451.      * 根据excel模板文件写入文件
  452.      *
  453.      * @param file
  454.      * @param templateFileName
  455.      * @param data
  456.      */
  457.     public static void writeTemplate(File file, String templateFileName, List data) {
  458.         EasyExcel.write(file).withTemplate(templateFileName).sheet().doFill(data);
  459.     }
  460.     /**
  461.      * 根据excel模板文件写入文件
  462.      *
  463.      * @param filePath
  464.      * @param templateFileName
  465.      * @param headClazz
  466.      * @param data
  467.      */
  468.     public static void writeTemplate(String filePath, String templateFileName, Class headClazz, List data) {
  469.         EasyExcel.write(filePath, headClazz).withTemplate(templateFileName).sheet().doFill(data);
  470.     }
  471.     /**
  472.      * 根据excel模板文件写入文件
  473.      *
  474.      * @param outputStream
  475.      * @param templateFileName
  476.      * @param headClazz
  477.      * @param data
  478.      */
  479.     public static void writeTemplate(OutputStream outputStream, String templateFileName, Class headClazz, List data) {
  480.         EasyExcel.write(outputStream, headClazz).withTemplate(templateFileName).sheet().doFill(data);
  481.     }
  482.    
  483.     /**
  484.      * 根据excel模板文件写入文件
  485.      *
  486.      * @param file
  487.      * @param templateFileName
  488.      * @param headClazz
  489.      * @param data
  490.      */
  491.     public static void writeTemplate(File file, String templateFileName, Class headClazz, List data) {
  492.         EasyExcel.write(file, headClazz).withTemplate(templateFileName).sheet().doFill(data);
  493.     }
  494.     /**
  495.      * 按模板写文件
  496.      *
  497.      * @param filePath
  498.      * @param headClazz 表头模板
  499.      * @param data      数据
  500.      */
  501.     public static void write(String filePath, Class headClazz, List data) {
  502.         EasyExcel.write(filePath, headClazz).sheet().doWrite(data);
  503.     }
  504.     /**
  505.      * 按模板写文件
  506.      *
  507.      * @param outputStream
  508.      * @param headClazz 表头模板
  509.      * @param data      数据
  510.      */
  511.     public static void write(OutputStream outputStream, Class headClazz, List data) {
  512.         EasyExcel.write(outputStream, headClazz).sheet().doWrite(data);
  513.     }
  514.     /**
  515.      * 按模板写文件
  516.      *
  517.      * @param file
  518.      * @param headClazz 表头模板
  519.      * @param data      数据
  520.      */
  521.     public static void write(File file, Class headClazz, List data) {
  522.         EasyExcel.write(file, headClazz).sheet().doWrite(data);
  523.     }
  524.     /**
  525.      * 按模板写文件
  526.      *
  527.      * @param filePath
  528.      * @param headClazz 表头模板
  529.      * @param data      数据
  530.      * @param sheetNo   sheet页号,从0开始
  531.      */
  532.     public static void write(String filePath, Class headClazz, List data, Integer sheetNo) {
  533.         EasyExcel.write(filePath, headClazz).sheet(sheetNo).doWrite(data);
  534.     }
  535.     /**
  536.      * 按模板写文件
  537.      *
  538.      * @param outputStream
  539.      * @param headClazz 表头模板
  540.      * @param data      数据
  541.      * @param sheetNo   sheet页号,从0开始
  542.      */
  543.     public static void write(OutputStream outputStream, Class headClazz, List data, Integer sheetNo) {
  544.         EasyExcel.write(outputStream, headClazz).sheet(sheetNo).doWrite(data);
  545.     }
  546.    
  547.         /**
  548.      * 按模板写文件
  549.      *
  550.      * @param file
  551.      * @param headClazz 表头模板
  552.      * @param data      数据
  553.      * @param sheetNo   sheet页号,从0开始
  554.      */
  555.     public static void write(File file, Class headClazz, List data, Integer sheetNo) {
  556.         EasyExcel.write(file, headClazz).sheet(sheetNo).doWrite(data);
  557.     }
  558.     /**
  559.      * 按模板写文件
  560.      *
  561.      * @param filePath
  562.      * @param headClazz 表头模板
  563.      * @param data      数据
  564.      * @param sheetNo   sheet页号,从0开始
  565.      * @param sheetName sheet名称
  566.      */
  567.     public static void write(String filePath, Class headClazz, List data, Integer sheetNo, String sheetName) {
  568.         EasyExcel.write(filePath, headClazz).sheet(sheetNo, sheetName).doWrite(data);
  569.     }
  570.     /**
  571.      * 按模板写文件
  572.      *
  573.      * @param outputStream
  574.      * @param headClazz 表头模板
  575.      * @param data      数据
  576.      * @param sheetNo   sheet页号,从0开始
  577.      * @param sheetName sheet名称
  578.      */
  579.     public static void write(OutputStream outputStream, Class headClazz, List data, Integer sheetNo, String sheetName) {
  580.         EasyExcel.write(outputStream, headClazz).sheet(sheetNo, sheetName).doWrite(data);
  581.     }
  582.    
  583.         /**
  584.      * 按模板写文件
  585.      *
  586.      * @param file
  587.      * @param headClazz 表头模板
  588.      * @param data      数据
  589.      * @param sheetNo   sheet页号,从0开始
  590.      * @param sheetName sheet名称
  591.      */
  592.     public static void write(File file, Class headClazz, List data, Integer sheetNo, String sheetName) {
  593.         EasyExcel.write(file, headClazz).sheet(sheetNo, sheetName).doWrite(data);
  594.     }
  595.     /**
  596.      * 按模板写文件
  597.      *
  598.      * @param filePath
  599.      * @param headClazz    表头模板
  600.      * @param data         数据
  601.      * @param writeHandler 自定义的处理器,比如设置table样式,设置超链接、单元格下拉框等等功能都可以通过这个实现(需要注册多个则自己通过链式去调用)
  602.      * @param sheetNo      sheet页号,从0开始
  603.      * @param sheetName    sheet名称
  604.      */
  605.     public static void write(String filePath, Class headClazz, List data, WriteHandler writeHandler, Integer sheetNo, String sheetName) {
  606.         EasyExcel.write(filePath, headClazz).registerWriteHandler(writeHandler).sheet(sheetNo, sheetName).doWrite(data);
  607.     }
  608.     /**
  609.      * 按模板写文件(包含某些字段)
  610.      *
  611.      * @param filePath
  612.      * @param headClazz   表头模板
  613.      * @param data        数据
  614.      * @param includeCols 包含字段集合,根据字段名称显示
  615.      * @param sheetNo     sheet页号,从0开始
  616.      * @param sheetName   sheet名称
  617.      */
  618.     public static void writeInclude(String filePath, Class headClazz, List data, Set<String> includeCols, Integer sheetNo, String sheetName) {
  619.         EasyExcel.write(filePath, headClazz).includeColumnFieldNames(includeCols).sheet(sheetNo, sheetName).doWrite(data);
  620.     }
  621.     /**
  622.      * 按模板写文件(排除某些字段)
  623.      *
  624.      * @param filePath
  625.      * @param headClazz   表头模板
  626.      * @param data        数据
  627.      * @param excludeCols 过滤排除的字段,根据字段名称过滤
  628.      * @param sheetNo     sheet页号,从0开始
  629.      * @param sheetName   sheet名称
  630.      */
  631.     public static void writeExclude(String filePath, Class headClazz, List data, Set<String> excludeCols, Integer sheetNo, String sheetName) {
  632.         EasyExcel.write(filePath, headClazz).excludeColumnFieldNames(excludeCols).sheet(sheetNo, sheetName).doWrite(data);
  633.     }
  634.     /**
  635.      * 多个sheet页的数据链式写入
  636.      * ExcelUtil.writeWithSheets(outputStream)
  637.      * .writeModel(ExcelModel.class, excelModelList, "sheetName1")
  638.      * .write(headData, data,"sheetName2")
  639.      * .finish();
  640.      *
  641.      * @param outputStream
  642.      */
  643.     public static EasyExcelWriterFactory writeWithSheets(OutputStream outputStream) {
  644.         EasyExcelWriterFactory excelWriter = new EasyExcelWriterFactory(outputStream);
  645.         return excelWriter;
  646.     }
  647.     /**
  648.      * 多个sheet页的数据链式写入
  649.      * ExcelUtil.writeWithSheets(file)
  650.      * .writeModel(ExcelModel.class, excelModelList, "sheetName1")
  651.      * .write(headData, data,"sheetName2")
  652.      * .finish();
  653.      *
  654.      * @param file
  655.      */
  656.     public static EasyExcelWriterFactory writeWithSheets(File file) {
  657.         EasyExcelWriterFactory excelWriter = new EasyExcelWriterFactory(file);
  658.         return excelWriter;
  659.     }
  660.     /**
  661.      * 多个sheet页的数据链式写入
  662.      * ExcelUtil.writeWithSheets(filePath)
  663.      * .writeModel(ExcelModel.class, excelModelList, "sheetName1")
  664.      * .write(headData, data,"sheetName2")
  665.      * .finish();
  666.      *
  667.      * @param filePath
  668.      */
  669.     public static EasyExcelWriterFactory writeWithSheets(String filePath) {
  670.         EasyExcelWriterFactory excelWriter = new EasyExcelWriterFactory(filePath);
  671.         return excelWriter;
  672.     }
  673.     /**
  674.      * 多个sheet页的数据链式写入(失败了会返回一个有部分数据的Excel)
  675.      * ExcelUtil.writeWithSheets(response, exportFileName)
  676.      * .writeModel(ExcelModel.class, excelModelList, "sheetName1")
  677.      * .write(headData, data,"sheetName2")
  678.      * .finish();
  679.      *
  680.      * @param response
  681.      * @param exportFileName 导出的文件名称
  682.      */
  683.     public static EasyExcelWriterFactory writeWithSheetsWeb(HttpServletResponse response, String exportFileName) throws IOException {
  684.         response.setContentType("application/vnd.ms-excel");
  685.         response.setCharacterEncoding("utf-8");
  686.         // 这里URLEncoder.encode可以防止中文乱码
  687.         String fileName = URLEncoder.encode(exportFileName, "UTF-8");
  688.         response.setHeader("Content-disposition", "attachment;filename=" + fileName + ".xlsx");
  689.         EasyExcelWriterFactory excelWriter = new EasyExcelWriterFactory(response.getOutputStream());
  690.         return excelWriter;
  691.     }
  692. }
复制代码
EasyExcelWriterFactory

文件导出和模板添补实现多Sheet写入(链式利用)
  1. public class EasyExcelWriterFactory {
  2.     private int sheetNo = 0;
  3.     private ExcelWriter excelWriter = null;
  4.     public EasyExcelWriterFactory(OutputStream outputStream) {
  5.         excelWriter = EasyExcel.write(outputStream).build();
  6.     }
  7.     public EasyExcelWriterFactory(File file) {
  8.         excelWriter = EasyExcel.write(file).build();
  9.     }
  10.     public EasyExcelWriterFactory(String filePath) {
  11.         excelWriter = EasyExcel.write(filePath).build();
  12.     }
  13.     /**
  14.      * 链式模板表头写入
  15.      *
  16.      * @param headClazz 表头格式
  17.      * @param data      数据 List<ExcelModel> 或者List<List<Object>>
  18.      * @return
  19.      */
  20.     public EasyExcelWriterFactory writeModel(Class headClazz, List data) {
  21.         excelWriter.write(data, EasyExcel.writerSheet(this.sheetNo++).head(headClazz).build());
  22.         return this;
  23.     }
  24.     /**
  25.      * 链式模板表头写入
  26.      *
  27.      * @param headClazz 表头格式
  28.      * @param data      数据 List<ExcelModel> 或者List<List<Object>>
  29.      * @return
  30.      */
  31.     public EasyExcelWriterFactory writeModel(Class headClazz, List data, String sheetName) {
  32.         excelWriter.write(data, EasyExcel.writerSheet(this.sheetNo++, sheetName).head(headClazz).build());
  33.         return this;
  34.     }
  35.     /**
  36.      * 链式自定义表头写入
  37.      *
  38.      * @param head
  39.      * @param data      数据 List<ExcelModel> 或者List<List<Object>>
  40.      * @param sheetName
  41.      * @return
  42.      */
  43.     public EasyExcelWriterFactory write(List<List<String>> head, List data, String sheetName) {
  44.         excelWriter.write(data, EasyExcel.writerSheet(this.sheetNo++, sheetName).head(head).build());
  45.         return this;
  46.     }
  47.     /**
  48.      * 使用此类结束后,一定要关闭流
  49.      */
  50.     public void finish() {
  51.         excelWriter.finish();
  52.     }
  53. }
复制代码
ExcelListener

文件读取大数据和多Sheet导入监听器(利用线程池和批量插入方法)
  1. public class ExcelListener extends AnalysisEventListener<T> {
  2.     Logger log = LoggerFactory.getLogger(getClass());
  3.     private static final Integer BATCH_SIZE = 1000;
  4.     private Integer sheetNo;
  5.     private Executor executor;
  6.     private List<T> dataList = new ArrayList<>();
  7.     public ExcelListener(Integer sheetNo, Executor executor) {
  8.         this.sheetNo = sheetNo;
  9.         this.executor = executor;
  10.     }
  11.     @Override
  12.     public void invoke(T data, AnalysisContext analysisContext) {
  13.         log.info("解析到一条数据:{}", JSON.toJSONString(data));
  14.         dataList.add(data);
  15.         if (dataList.size() >= BATCH_SIZE) {
  16.             CompletableFuture.runAsync(() -> {
  17.                 // 业务操作
  18.                 // saveToDB(dataList);
  19.             }, executor);
  20.             dataList.clear();
  21.         }
  22.     }
  23.     @Override
  24.     public void doAfterAllAnalysed(AnalysisContext analysisContext) {
  25.         log.info("已解析完所有数据!");
  26.         if (!dataList.isEmpty()) {
  27.             CompletableFuture.runAsync(() -> {
  28.                 // 业务操作
  29.                 // saveToDB(dataList);
  30.             }, executor);
  31.             dataList.clear();
  32.         }
  33.     }
  34.     @Override
  35.     public void onException(Exception exception, AnalysisContext context) throws Exception {
  36.         if (exception instanceof ExcelDataConvertException) {
  37.             ExcelDataConvertException convertException = (ExcelDataConvertException) exception;
  38.             Integer row = convertException.getRowIndex();
  39.             log.error("sheetNo:{},第{}行数据转换失败,异常信息:{}", sheetNo, row, exception.getMessage());
  40.         } else {
  41.             log.error("导入其他异常信息:{}", exception.getMessage());
  42.         }
  43.     }
  44. }
复制代码
利用案例
  1. @GetMapping("/download1")
  2. public void download1(HttpServletResponse response) {
  3.     try {
  4.         response.setContentType("application/vnd.ms-excel");
  5.         response.setCharacterEncoding("utf-8");
  6.         // 这里URLEncoder.encode可以防止中文乱码 当然和easyexcel没有关系
  7.         String fileName = URLEncoder.encode("测试", "UTF-8").replaceAll("\\+", "%20");
  8.         response.setHeader("Content-disposition", "attachment;filename=" + fileName + ".xls");
  9.         User user = new User();
  10.         user.setUserId(123);
  11.         user.setName("as");
  12.         user.setPhone("15213");
  13.         user.setEmail("5456");
  14.         user.setCreateTime(new Date());
  15.         EasyExcelUtils.write(response.getOutputStream(), User.class, Arrays.asList(user));
  16.     } catch (Exception e) {
  17.         e.printStackTrace();
  18.     }
  19. }
  20. @GetMapping("/download2")
  21. public void download2(HttpServletResponse response) {
  22.     try {
  23.         response.setContentType("application/vnd.ms-excel");
  24.         response.setCharacterEncoding("utf-8");
  25.         // 这里URLEncoder.encode可以防止中文乱码 当然和easyexcel没有关系
  26.         String fileName = URLEncoder.encode("测试", "UTF-8").replaceAll("\\+", "%20");
  27.         response.setHeader("Content-disposition", "attachment;filename=" + fileName + ".xls");
  28.         User user = new User();
  29.         user.setUserId(123);
  30.         user.setName("as");
  31.         user.setPhone("15213");
  32.         user.setEmail("5456");
  33.         user.setCreateTime(new Date());
  34.         EasyExcelUtils.write(response.getOutputStream(), User.class, Arrays.asList(user), 2);
  35.     } catch (Exception e) {
  36.         e.printStackTrace();
  37.     }
  38. }
  39. @GetMapping("/download3")
  40. public void download3(HttpServletResponse response) {
  41.     try {
  42.         response.setContentType("application/vnd.ms-excel");
  43.         response.setCharacterEncoding("utf-8");
  44.         // 这里URLEncoder.encode可以防止中文乱码 当然和easyexcel没有关系
  45.         String fileName = URLEncoder.encode("测试", "UTF-8").replaceAll("\\+", "%20");
  46.         response.setHeader("Content-disposition", "attachment;filename=" + fileName + ".xls");
  47.         User user = new User();
  48.         user.setUserId(123);
  49.         user.setName("as");
  50.         user.setPhone("15213");
  51.         user.setEmail("5456");
  52.         user.setCreateTime(new Date());
  53.         EasyExcelUtils.writeWithSheets(response.getOutputStream())
  54.                 .writeModel(User.class, Arrays.asList(user))
  55.                 .writeModel(User.class, Arrays.asList(user))
  56.                 .finish();
  57.     } catch (Exception e) {
  58.         e.printStackTrace();
  59.     }
  60. }
复制代码


免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

梦见你的名字

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表