实战分享之springboot+easypoi快速业务集成1

本文涉及的产品
服务治理 MSE Sentinel/OpenSergo,Agent数量 不受限
简介: 实战分享之springboot+easypoi快速业务集成1

1.依赖引入

        <dependency>
            <groupId>cn.afterturn</groupId>
            <artifactId>easypoi-base</artifactId>
            <version>4.1.0</version>
        </dependency>
        <dependency>
            <groupId>cn.afterturn</groupId>
            <artifactId>easypoi-web</artifactId>
            <version>4.1.0</version>
        </dependency>
        <dependency>
            <groupId>cn.afterturn</groupId>
            <artifactId>easypoi-annotation</artifactId>
            <version>4.1.0</version>
        </dependency>

2.封装easypoi工具类

```package com.wzz.utils;

import cn.afterturn.easypoi.excel.ExcelExportUtil;
import cn.afterturn.easypoi.excel.ExcelImportUtil;
import cn.afterturn.easypoi.excel.entity.ExportParams;
import cn.afterturn.easypoi.excel.entity.ImportParams;
import cn.afterturn.easypoi.excel.entity.enmus.ExcelType;
import org.apache.commons.lang3.StringUtils;
import org.apache.poi.hssf.util.HSSFColor;
import org.apache.poi.ss.usermodel.Workbook;
import org.springframework.web.multipart.MultipartFile;

import javax.servlet.http.HttpServletResponse;
import java.io.File;
import java.io.IOException;
import java.net.URLEncoder;
import java.util.List;
import java.util.Map;
import java.util.NoSuchElementException;

/**

  • Excel导入导出工具类
  • @author pangu
    */
    public class ExcelUtil {

    /**

    • 导出工具类
    • @param list
    • @param title
    • @param sheetName
    • @param pojoClass
    • @param fileName
    • @param isCreateHeader
    • @param response
      */
      public static void exportExcel(List<?> list, String title, String sheetName, Class<?> pojoClass,

                              String fileName, boolean isCreateHeader, HttpServletResponse response){
      

      ExportParams exportParams = new ExportParams(title, sheetName);
      exportParams.setCreateHeadRows(isCreateHeader);
      defaultExport(list, pojoClass, fileName, response, exportParams);
      }

      /**

    • 导出工具类
    • @param list
    • @param title
    • @param sheetName
    • @param pojoClass
    • @param fileName
    • @param response
      */
      public static void exportExcel(List<?> list, String title, String sheetName, Class<?> pojoClass,String fileName,

                              HttpServletResponse response){
      

      ExportParams exportParams = new ExportParams(title, sheetName);
      exportParams.setStyle(ExcelStyleUtil.class);
      defaultExport(list, pojoClass, fileName, response, exportParams);
      }

      public static void exportExcel(List> list, String fileName, HttpServletResponse response){
      defaultExport(list, fileName, response);
      }

      private static void defaultExport(List<?> list, Class<?> pojoClass, String fileName,

                                 HttpServletResponse response, ExportParams exportParams) {
      

      //TODO设置标题颜色

      Workbook workbook = ExcelExportUtil.exportExcel(exportParams,pojoClass,list);
      if (workbook != null); downLoadExcel(fileName, response, workbook);
      }

      private static void downLoadExcel(String fileName, HttpServletResponse response, Workbook workbook) {
      try {

       response.setCharacterEncoding("UTF-8");
       response.setHeader("content-Type", "application/vnd.ms-excel");
       response.setHeader("Content-Disposition", "attachment;filename=" + URLEncoder.encode(fileName, "UTF-8"));
       workbook.write(response.getOutputStream());
      

      } catch (IOException e) {

       //throw new NormalException(e.getMessage());
      

      }
      }

      private static void defaultExport(List> list, String fileName, HttpServletResponse response) {
      Workbook workbook = ExcelExportUtil.exportExcel(list, ExcelType.HSSF);
      if (workbook != null);
      downLoadExcel(fileName, response, workbook);
      }

      public static List importExcel(String filePath,Integer titleRows,Integer headerRows, Class pojoClass){
      if (StringUtils.isBlank(filePath)){

       return null;
      

      }
      ImportParams params = new ImportParams();
      params.setTitleRows(titleRows);
      params.setHeadRows(headerRows);
      List list = null;
      try {

       list = ExcelImportUtil.importExcel(new File(filePath), pojoClass, params);
      

      }catch (NoSuchElementException e){

       //throw new NormalException("模板不能为空");
      

      } catch (Exception e) {

       e.printStackTrace();
       //throw new NormalException(e.getMessage());
      

      } return list;
      }

      public static List importExcel(MultipartFile file, Integer titleRows, Integer headerRows, Class pojoClass){
      if (file == null){ return null;
      }
      ImportParams params = new ImportParams();
      params.setTitleRows(titleRows);
      params.setHeadRows(headerRows);
      List list = null;
      try {

       list = ExcelImportUtil.importExcel(file.getInputStream(), pojoClass, params);
      

      }catch (NoSuchElementException e){

       // throw new NormalException("excel文件不能为空");
      

      } catch (Exception e) {

       //throw new NormalException(e.getMessage());
       System.out.println(e.getMessage());
      

      }
      return list;
      }

}
```

相关文章
|
18天前
|
消息中间件 Java Kafka
Springboot集成高低版本kafka
Springboot集成高低版本kafka
|
25天前
|
NoSQL Java Redis
SpringBoot集成Redis解决表单重复提交接口幂等(亲测可用)
SpringBoot集成Redis解决表单重复提交接口幂等(亲测可用)
283 0
|
30天前
|
NoSQL Java Redis
SpringBoot集成Redis
SpringBoot集成Redis
426 0
|
21小时前
|
Java Spring
Spring Boot脚手架集成校验框架
Spring Boot脚手架集成校验框架
6 0
|
2天前
|
Java Docker 容器
SpringBoot项目集成XXL-job
SpringBoot项目集成XXL-job
|
4天前
|
Java 关系型数据库 数据库
【SpringBoot系列】微服务集成Flyway
【4月更文挑战第7天】SpringBoot微服务集成Flyway
【SpringBoot系列】微服务集成Flyway
|
19天前
|
SQL Java 调度
SpringBoot集成quartz定时任务trigger_state状态ERROR解决办法
SpringBoot集成quartz定时任务trigger_state状态ERROR解决办法
|
26天前
|
NoSQL Java Redis
SpringBoot集成Redis
SpringBoot集成Redis
54 1
|
29天前
|
Java 测试技术 Maven
SpringBoot集成Elasticsearch
SpringBoot集成Elasticsearch
24 0
|
1月前
|
NoSQL Java Redis
小白版的springboot中集成mqtt服务(超级无敌详细),实现不了掐我头!!!
小白版的springboot中集成mqtt服务(超级无敌详细),实现不了掐我头!!!
272 1