Springboot+Poi实现Excel的导入导出

◇◆丶佛笑我妖孽 提交于 2020-08-13 12:29:57

目录

POI操作Excel

EasyPOI操作Excel

解决不同浏览器导出excel中文名称乱码问题

使用POI将HTML Table导出Excel


代码:https://gitee.com/typ1805/springboot-master

POI操作Excel

一、poi简介

          Apache POI是Apache软件基金会的开放源码函式库,POI提供API给Java程序对Microsoft Office格式档案读和写的功能。

1、HSSF:HSSF 是Horrible SpreadSheet Format的缩写,通过HSSF,你可以用纯Java代码来读取、写入、修改Excel文件。HSSF 为读取操作提供了两类API:usermodel和eventusermodel,即“用户模型”和“事件-用户模型”。

2、POI EXCEL文档结构类

  • HSSFWorkbook excel文档对象
  • HSSFSheet excel的sheet HSSFRow excel的行
  • HSSFCell excel的单元格 HSSFFont excel字体
  • HSSFName 名称 HSSFDataFormat 日期格式
  • HSSFHeader sheet头
  • HSSFFooter sheet尾
  • HSSFCellStyle cell样式
  • HSSFDateUtil 日期
  • HSSFPrintSetup 打印
  • HSSFErrorConstants 错误信息表

3、导入Excel常用的方法:

  • POIFSFileSystem fs = new POIFSFileSystem(new FileInputStream("d:/test.xls"));    
  • HSSFWorkbook wb = new HSSFWorkbook(fs);  //得到Excel工作簿对象   
  • HSSFSheet sheet = wb.getSheetAt(0);   //得到Excel工作表对象   
  • HSSFRow row = sheet.getRow(i);  //得到Excel工作表的行   
  • HSSFCell cell = row.getCell((short) j);  //得到Excel工作表指定行的单元格 
  • cellStyle = cell.getCellStyle();  //得到单元格样式  

4、导出Excel常用的方法:

  • HSSFWorkbook wb = new HSSFWorkbook();  //创建Excel工作簿对象   
  • HSSFSheet sheet = wb.createSheet("new sheet");  //创建Excel工作表对象     
  • HSSFRow row = sheet.createRow((short)0);  //创建Excel工作表的行   
  • cellStyle = wb.createCellStyle();  //创建单元格样式   
  • row.createCell((short)0).setCellStyle(cellStyle);  //创建Excel工作表指定行的单元格   
  • row.createCell((short)0).setCellValue(1);  //设置Excel工作表的值  

二、springboot整合poi

    主要是springboot+myBatis+poi+mysql的简单应用,从数据库查询到结果集导出excel到本地,从本地中的excel文件导入到数据库表中。

1、添加依赖

 
  1.  
    <dependency>
  2.  
    <groupId>org.apache.poi</groupId>
  3.  
    <artifactId>poi</artifactId>
  4.  
    <version>RELEASE</version>
  5.  
    </dependency>
  6.  
    <dependency>
  7.  
    <groupId>org.apache.poi</groupId>
  8.  
    <artifactId>poi-ooxml</artifactId>
  9.  
    <version>RELEASE</version>
  10.  
    </dependency>

2、创建一个ExcelUtil类,这里的实现比较简单

 
  1.  
    package com.example.demo.utils;
  2.  
     
  3.  
    import com.example.demo.entity.ExcelData;
  4.  
    import com.example.demo.entity.User;
  5.  
    import lombok.extern.slf4j.Slf4j;
  6.  
    import org.apache.poi.hssf.usermodel.*;
  7.  
    import org.apache.poi.ss.usermodel.*;
  8.  
     
  9.  
    import javax.servlet.http.HttpServletResponse;
  10.  
    import java.io.BufferedOutputStream;
  11.  
    import java.io.FileInputStream;
  12.  
    import java.io.InputStream;
  13.  
    import java.io.OutputStream;
  14.  
    import java.util.ArrayList;
  15.  
    import java.util.List;
  16.  
     
  17.  
    import static org.apache.poi.ss.usermodel.CellType.*;
  18.  
     
  19.  
    /**
  20.  
    * 路径:com.example.demo.utils
  21.  
    * 类名:
  22.  
    * 功能:导入导出
  23.  
    * 备注:
  24.  
    * 创建人:typ
  25.  
    * 创建时间:2018/10/19 11:21
  26.  
    * 修改人:
  27.  
    * 修改备注:
  28.  
    * 修改时间:
  29.  
    */
  30.  
  31.  
    public class ExcelUtil {
  32.  
     
  33.  
    /**
  34.  
    * 方法名:exportExcel
  35.  
    * 功能:导出Excel
  36.  
    * 描述:
  37.  
    * 创建人:typ
  38.  
    * 创建时间:2018/10/19 16:00
  39.  
    * 修改人:
  40.  
    * 修改描述:
  41.  
    * 修改时间:
  42.  
    */
  43.  
    public static void exportExcel(HttpServletResponse response, ExcelData data) {
  44.  
    log.info("导出解析开始,fileName:{}",data.getFileName());
  45.  
    try {
  46.  
    //实例化HSSFWorkbook
  47.  
    HSSFWorkbook workbook = new HSSFWorkbook();
  48.  
    //创建一个Excel表单,参数为sheet的名字
  49.  
    HSSFSheet sheet = workbook.createSheet("sheet");
  50.  
    //设置表头
  51.  
    setTitle(workbook, sheet, data.getHead());
  52.  
    //设置单元格并赋值
  53.  
    setData(sheet, data.getData());
  54.  
    //设置浏览器下载
  55.  
    setBrowser(response, workbook, data.getFileName());
  56.  
    log.info("导出解析成功!");
  57.  
    } catch (Exception e) {
  58.  
    log.info("导出解析失败!");
  59.  
    e.printStackTrace();
  60.  
    }
  61.  
    }
  62.  
     
  63.  
    /**
  64.  
    * 方法名:setTitle
  65.  
    * 功能:设置表头
  66.  
    * 描述:
  67.  
    * 创建人:typ
  68.  
    * 创建时间:2018/10/19 10:20
  69.  
    * 修改人:
  70.  
    * 修改描述:
  71.  
    * 修改时间:
  72.  
    */
  73.  
    private static void setTitle(HSSFWorkbook workbook, HSSFSheet sheet, String[] str) {
  74.  
    try {
  75.  
    HSSFRow row = sheet.createRow(0);
  76.  
    //设置列宽,setColumnWidth的第二个参数要乘以256,这个参数的单位是1/256个字符宽度
  77.  
    for (int i = 0; i <= str.length; i++) {
  78.  
    sheet.setColumnWidth(i, 15 * 256);
  79.  
    }
  80.  
    //设置为居中加粗,格式化时间格式
  81.  
    HSSFCellStyle style = workbook.createCellStyle();
  82.  
    HSSFFont font = workbook.createFont();
  83.  
    font.setBold(true);
  84.  
    style.setFont(font);
  85.  
    style.setDataFormat(HSSFDataFormat.getBuiltinFormat("m/d/yy h:mm"));
  86.  
    //创建表头名称
  87.  
    HSSFCell cell;
  88.  
    for (int j = 0; j < str.length; j++) {
  89.  
    cell = row.createCell(j);
  90.  
    cell.setCellValue(str[j]);
  91.  
    cell.setCellStyle(style);
  92.  
    }
  93.  
    } catch (Exception e) {
  94.  
    log.info("导出时设置表头失败!");
  95.  
    e.printStackTrace();
  96.  
    }
  97.  
    }
  98.  
     
  99.  
    /**
  100.  
    * 方法名:setData
  101.  
    * 功能:表格赋值
  102.  
    * 描述:
  103.  
    * 创建人:typ
  104.  
    * 创建时间:2018/10/19 16:11
  105.  
    * 修改人:
  106.  
    * 修改描述:
  107.  
    * 修改时间:
  108.  
    */
  109.  
    private static void setData(HSSFSheet sheet, List<String[]> data) {
  110.  
    try{
  111.  
    int rowNum = 1;
  112.  
    for (int i = 0; i < data.size(); i++) {
  113.  
    HSSFRow row = sheet.createRow(rowNum);
  114.  
    for (int j = 0; j < data.get(i).length; j++) {
  115.  
    row.createCell(j).setCellValue(data.get(i)[j]);
  116.  
    }
  117.  
    rowNum++;
  118.  
    }
  119.  
    log.info("表格赋值成功!");
  120.  
    }catch (Exception e){
  121.  
    log.info("表格赋值失败!");
  122.  
    e.printStackTrace();
  123.  
    }
  124.  
    }
  125.  
     
  126.  
    /**
  127.  
    * 方法名:setBrowser
  128.  
    * 功能:使用浏览器下载
  129.  
    * 描述:
  130.  
    * 创建人:typ
  131.  
    * 创建时间:2018/10/19 16:20
  132.  
    * 修改人:
  133.  
    * 修改描述:
  134.  
    * 修改时间:
  135.  
    */
  136.  
    private static void setBrowser(HttpServletResponse response, HSSFWorkbook workbook, String fileName) {
  137.  
    try {
  138.  
    //清空response
  139.  
    response.reset();
  140.  
    //设置response的Header
  141.  
    response.addHeader("Content-Disposition", "attachment;filename=" + fileName);
  142.  
    OutputStream os = new BufferedOutputStream(response.getOutputStream());
  143.  
    response.setContentType("application/vnd.ms-excel;charset=gb2312");
  144.  
    //将excel写入到输出流中
  145.  
    workbook.write(os);
  146.  
    os.flush();
  147.  
    os.close();
  148.  
    log.info("设置浏览器下载成功!");
  149.  
    } catch (Exception e) {
  150.  
    log.info("设置浏览器下载失败!");
  151.  
    e.printStackTrace();
  152.  
    }
  153.  
     
  154.  
    }
  155.  
     
  156.  
     
  157.  
    /**
  158.  
    * 方法名:importExcel
  159.  
    * 功能:导入
  160.  
    * 描述:
  161.  
    * 创建人:typ
  162.  
    * 创建时间:2018/10/19 11:45
  163.  
    * 修改人:
  164.  
    * 修改描述:
  165.  
    * 修改时间:
  166.  
    */
  167.  
    public static List<Object[]> importExcel(String fileName) {
  168.  
    log.info("导入解析开始,fileName:{}",fileName);
  169.  
    try {
  170.  
    List<Object[]> list = new ArrayList<>();
  171.  
    InputStream inputStream = new FileInputStream(fileName);
  172.  
    Workbook workbook = WorkbookFactory.create(inputStream);
  173.  
    Sheet sheet = workbook.getSheetAt(0);
  174.  
    //获取sheet的行数
  175.  
    int rows = sheet.getPhysicalNumberOfRows();
  176.  
    for (int i = 0; i < rows; i++) {
  177.  
    //过滤表头行
  178.  
    if (i == 0) {
  179.  
    continue;
  180.  
    }
  181.  
    //获取当前行的数据
  182.  
    Row row = sheet.getRow(i);
  183.  
    Object[] objects = new Object[row.getPhysicalNumberOfCells()];
  184.  
    int index = 0;
  185.  
    for (Cell cell : row) {
  186.  
    if (cell.getCellType().equals(NUMERIC)) {
  187.  
    objects[index] = (int) cell.getNumericCellValue();
  188.  
    }
  189.  
    if (cell.getCellType().equals(STRING)) {
  190.  
    objects[index] = cell.getStringCellValue();
  191.  
    }
  192.  
    if (cell.getCellType().equals(BOOLEAN)) {
  193.  
    objects[index] = cell.getBooleanCellValue();
  194.  
    }
  195.  
    if (cell.getCellType().equals(ERROR)) {
  196.  
    objects[index] = cell.getErrorCellValue();
  197.  
    }
  198.  
    index++;
  199.  
    }
  200.  
    list.add(objects);
  201.  
    }
  202.  
    log.info("导入文件解析成功!");
  203.  
    return list;
  204.  
    }catch (Exception e){
  205.  
    log.info("导入文件解析失败!");
  206.  
    e.printStackTrace();
  207.  
    }
  208.  
    return null;
  209.  
    }
  210.  
     
  211.  
    //测试导入
  212.  
    public static void main(String[] args) {
  213.  
    try {
  214.  
    String fileName = "f:/test.xlsx";
  215.  
    List<Object[]> list = importExcel(fileName);
  216.  
    for (int i = 0; i < list.size(); i++) {
  217.  
    User user = new User();
  218.  
    user.setId((Integer) list.get(i)[0]);
  219.  
    user.setUsername((String) list.get(i)[1]);
  220.  
    user.setPassword((String) list.get(i)[2]);
  221.  
    user.setEnable((Integer) list.get(i)[3]);
  222.  
    System.out.println(user.toString());
  223.  
    }
  224.  
    } catch (Exception e) {
  225.  
    e.printStackTrace();
  226.  
    }
  227.  
    }
  228.  
     
  229.  
    }

具体业务代码在此不赘述,完整代码:https://download.csdn.net/download/typ1805/10737617

三、poi API简述

1、设置sheet名称和单元格内容

 
  1.  
    workbook.setSheetName(1"工作表",HSSFCell.ENCODING_UTF_16);          
  2.  
    cell.setEncoding((short) 1);      
  3.  
    cell.setCellValue("单元格内容");  

2、取得sheet的数目 

workbook.getNumberOfSheets()   

3、据index取得sheet对象

HSSFSheet sheet = wb.getSheetAt(0);  

4、取得有效的行数

int rowcount = sheet.getLastRowNum();  

5、取得一行的有效单元格个数

row.getLastCellNum();    

6、单元格值类型读写

 
  1.  
    cell.setCellType(HSSFCell.CELL_TYPE_STRING); //设置单元格为STRING类型   
  2.  
    cell.getNumericCellValue();//读取为数值类型的单元格内容  

7、设置列宽、行高

 
  1.  
    sheet.setColumnWidth((short)column,(short)width);      
  2.  
    row.setHeight((short)height);    

8、添加区域,合并单元格

 
  1.  
    // 合并从第rowFrom行columnFrom列
  2.  
    Region region = new Region((short)rowFrom,(short)columnFrom,(short)rowTo(short)columnTo);  
  3.  
    // 到rowTo行columnTo的区域 
  4.  
    sheet.addMergedRegion(region);     
  5.  
    // 得到所有区域       
  6.  
    sheet.getNumMergedRegions()   

9、保存Excel文件

 
  1.  
    FileOutputStream fileOut = new FileOutputStream(path);   
  2.  
    wb.write(fileOut);   

10、根据单元格不同属性返回字符串数值

 
  1.  
    public String getCellStringValue(HSSFCell cell) {      
  2.  
            String cellValue = "";      
  3.  
            switch (cell.getCellType()) {      
  4.  
            case HSSFCell.CELL_TYPE_STRING://字符串类型   
  5.  
                cellValue = cell.getStringCellValue();      
  6.  
                if(cellValue.trim().equals("")||cellValue.trim().length()<=0)      
  7.  
                    cellValue=" ";      
  8.  
                break;      
  9.  
            case HSSFCell.CELL_TYPE_NUMERIC: //数值类型   
  10.  
                cellValue = String.valueOf(cell.getNumericCellValue());      
  11.  
                break;      
  12.  
            case HSSFCell.CELL_TYPE_FORMULA: //公式   
  13.  
                cell.setCellType(HSSFCell.CELL_TYPE_NUMERIC);      
  14.  
                cellValue = String.valueOf(cell.getNumericCellValue());      
  15.  
                break;      
  16.  
            case HSSFCell.CELL_TYPE_BLANK:      
  17.  
                cellValue=" ";      
  18.  
                break;      
  19.  
            case HSSFCell.CELL_TYPE_BOOLEAN:      
  20.  
                break;      
  21.  
            case HSSFCell.CELL_TYPE_ERROR:      
  22.  
                break;      
  23.  
            default:      
  24.  
                break;      
  25.  
            }      
  26.  
           return cellValue;      
  27.  
    }     

11、常用单元格边框格式

 
  1.  
    HSSFCellStyle style = wb.createCellStyle();      
  2.  
    style.setBorderBottom(HSSFCellStyle.BORDER_DOTTED);//下边框        
  3.  
    style.setBorderLeft(HSSFCellStyle.BORDER_DOTTED);//左边框        
  4.  
    style.setBorderRight(HSSFCellStyle.BORDER_THIN);//右边框        
  5.  
    style.setBorderTop(HSSFCellStyle.BORDER_THIN);//上边框    

12、设置字体和内容位置

 
  1.  
    HSSFFont f  = wb.createFont();      
  2.  
    f.setFontHeightInPoints((short11);//字号       
  3.  
    f.setBoldweight(HSSFFont.BOLDWEIGHT_NORMAL);//加粗       
  4.  
    style.setFont(f);      
  5.  
    style.setAlignment(HSSFCellStyle.ALIGN_CENTER);//左右居中       
  6.  
    style.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);//上下居中       
  7.  
    style.setRotation(short rotation);//单元格内容的旋转的角度       
  8.  
    HSSFDataFormat df = wb.createDataFormat();      
  9.  
    style1.setDataFormat(df.getFormat("0.00%"));//设置单元格数据格式       
  10.  
    cell.setCellFormula(string);//给单元格设公式       
  11.  
    style.setRotation(short rotation);//单元格内容的旋转的角度   

13、插入图片

 
  1.  
    //先把读进来的图片放到一个ByteArrayOutputStream中,以便产生ByteArray       
  2.  
    ByteArrayOutputStream byteArrayOut = new ByteArrayOutputStream();      
  3.  
    BufferedImage bufferImg = ImageIO.read(new File("ok.jpg"));      
  4.  
    ImageIO.write(bufferImg,"jpg",byteArrayOut);      
  5.  
    //读进一个excel模版       
  6.  
    FileInputStream fos = new FileInputStream(filePathName+"/stencil.xlt");       
  7.  
    fs = new POIFSFileSystem(fos);      
  8.  
    //创建一个工作薄       
  9.  
    HSSFWorkbook wb = new HSSFWorkbook(fs);      
  10.  
    HSSFSheet sheet = wb.getSheetAt(0);      
  11.  
    HSSFPatriarch patriarch = sheet.createDrawingPatriarch();      
  12.  
    HSSFClientAnchor anchor = new HSSFClientAnchor(0,0,1023,255,(short0,0,(short)10,10);           
  13.  
    patriarch.createPicture(anchor , wb.addPicture(byteArrayOut.toByteArray(),HSSFWorkbook.PICTURE_TYPE_JPEG));

14、调整工作表位置

 
  1.  
    HSSFWorkbook wb = new HSSFWorkbook();     
  2.  
    HSSFSheet sheet = wb.createSheet("format sheet");     
  3.  
    HSSFPrintSetup ps = sheet.getPrintSetup();     
  4.  
    sheet.setAutobreaks(true);     
  5.  
    ps.setFitHeight((short)1);     
  6.  
    ps.setFitWidth((short)1);   

15、设置打印区域

 
  1.  
    HSSFSheet sheet = wordbook.createSheet("Sheet1");     
  2.  
    wordbook.setPrintArea(0, "$A$1:$C$2");    

16、标注脚注

 
  1.  
    HSSFSheet sheet = wordbook.createSheet("format sheet");     
  2.  
    HSSFFooter footer = sheet.getFooter()     
  3.  
    footer.setRight( "Page " + HSSFFooter.page() + " of " + HSSFFooter.numPages() );  

17、在工作单中清空行数据,调整行位置

 
  1.  
    HSSFWorkbook wb = new HSSFWorkbook();     
  2.  
    HSSFSheet sheet = wb.createSheet("row sheet");     
  3.  
    // Create various cells and rows for spreadsheet.      
  4.  
    // Shift rows 6 - 11 on the spreadsheet to the top (rows 0 - 5)      
  5.  
    sheet.shiftRows(510-5);    

18、选中指定的工作表

 
  1.  
    HSSFSheet sheet = wb.createSheet("row sheet");     
  2.  
    heet.setSelected(true);  

19、工作表的放大缩小

 
  1.  
    HSSFSheet sheet1 = wb.createSheet("new sheet");     
  2.  
    sheet1.setZoom(1,2);   // 50 percent magnification    

20、头注和脚注

 
  1.  
    HSSFSheet sheet = wb.createSheet("new sheet");     
  2.  
    HSSFHeader header = sheet.getHeader();     
  3.  
    header.setCenter("Center Header");     
  4.  
    header.setLeft("Left Header");     
  5.  
    header.setRight(HSSFHeader.font("Stencil-Normal""Italic") +     
  6.  
    HSSFHeader.fontSize((short) 16) + "Right w/ Stencil-Normal Italic font and size 16");  

21、自定义颜色

 
  1.  
    HSSFCellStyle style = wb.createCellStyle();     
  2.  
    style.setFillForegroundColor(HSSFColor.LIME.index);     
  3.  
    style.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);     
  4.  
    HSSFFont font = wb.createFont();     
  5.  
    font.setColor(HSSFColor.RED.index);     
  6.  
    style.setFont(font);     
  7.  
    cell.setCellStyle(style);     

22、填充和颜色设置

 
  1.  
    HSSFCellStyle style = wb.createCellStyle();     
  2.  
    style.setFillBackgroundColor(HSSFColor.AQUA.index);     
  3.  
    style.setFillPattern(HSSFCellStyle.BIG_SPOTS);     
  4.  
    HSSFCell cell = row.createCell((short1);     
  5.  
    cell.setCellValue("X");     
  6.  
    style = wb.createCellStyle();     
  7.  
    style.setFillForegroundColor(HSSFColor.ORANGE.index);     
  8.  
    style.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);     
  9.  
    cell.setCellStyle(style);   

23、强行刷新单元格公式

 
  1.  
    HSSFFormulaEvaluator eval=new HSSFFormulaEvaluator((HSSFWorkbook) wb);    
  2.  
    private static void updateFormula(Workbook wb,Sheet s,int row){     
  3.  
            Row r=s.getRow(row);     
  4.  
            Cell c=null;     
  5.  
            FormulaEcaluator eval=null;     
  6.  
            if(wb instanceof HSSFWorkbook)     
  7.  
                eval=new HSSFFormulaEvaluator((HSSFWorkbook) wb);     
  8.  
            else if(wb instanceof XSSFWorkbook)     
  9.  
                eval=new XSSFFormulaEvaluator((XSSFWorkbook) wb);     
  10.  
            for(int i=r.getFirstCellNum();i
  11.  
                c=r.getCell(i);     
  12.  
                if(c.getCellType()==Cell.CELL_TYPE_FORMULA)     
  13.  
                    eval.evaluateFormulaCell(c);     
  14.  
            }     
  15.  
    }    

24、设置不显示excel网格线 

sheet.setDisplayGridlines(false);//其中sheet是Sheet对象 

25、设置excel单元格中的内容换行 

cellStyle.setWrapText(true);

注意:其中cellStyle是WorkBook创建的CellStyle对象,然后将cellStyle设置到要换行的Cell对象,最后在要换行的对象(一般为字符串)加入"/r/n"。例如: 

topTile.append("/r/n" +"cellContent"); 

26、单元格的合并 

sheet.addMergedRegion(new CellRangeAddress(0, 4, 0, 2));// 本示例为合并42列 

27、设置页眉和页脚的页数 

 
  1.  
    HSSFHeader header = sheet.getHeader(); 
  2.  
    header.setCenter("Center Header"); 
  3.  
     header.setLeft("Left Header"); 
  4.  
     header.setRight(HSSFHeader.font("Stencil-Normal", "Italic") + 
  5.  
     HSSFHeader.fontSize((short) 16) + "Right w/ Stencil-Normal Italic font and size 16"); 
  6.  
    HSSFFooter footer = (HSSFFooter )sheet.getFooter() 
  7.  
     footer.setRight( "Page " + HSSFFooter.page() + " of " + HSSFFooter.numPages() ); 

28、使得一个Sheet适合一页 

 sheet.setAutobreaks(true); 

29、设置放大属性(Zoom被明确为一个分数,例如下面的75%使用3作为分子,4作为分母) 

sheet.setZoom(3,4);   

30、设置打印 

 
  1.  
    HSSFPrintSetup print = (HSSFPrintSetup) sheet.getPrintSetup(); 
  2.  
      print.setLandscape(true);//设置横向打印 
  3.  
      print.setScale((short) 70);//设置打印缩放70% 
  4.  
      print.setPaperSize(HSSFPrintSetup.A4_PAPERSIZE);//设置为A4纸张 
  5.  
      print.setLeftToRight(true);//設置打印顺序先行后列,默认为先列行            
  6.  
      print.setFitHeight((short) 10);设置缩放调整为10页高 
  7.  
      print.setFitWidth((short) 10);设置缩放调整为宽高 
  8.  
     
  9.  
      sheet.setAutobreaks(false); 
  10.  
      if (i != 0 && i % 30 == 0) {
  11.  
          sheet.setRowBreak(i);//設置每30行分頁打印 
  12.  
    }

31、反复的行和列(设置打印标题) 

 
  1.  
    HSSFWorkbook wb = new HSSFWorkbook(); 
  2.  
    wb.setRepeatingRowsAndColumns(0, 0, 12, 1, 6);//设置112列,行16每一页重复打印 

32、调整单元格宽度 

 
  1.  
    sheet.setAutobreaks(true); 
  2.  
    sheet.setColumnWidth((short)i,colsWidth[i]); //设定单元格长度 
  3.  
    sheet.autoSizeColumn((short) i);//自动根据长度调整单元格长度 

使用poi对excel的操作到此结束。。。

 

EasyPOI操作Excel

注:使用easypoi API导出excel相对于poi的API比较简单。

一、导出Excel

1、添加依赖

 
  1.  
    <dependency>
  2.  
    <groupId>cn.afterturn</groupId>
  3.  
    <artifactId>easypoi-spring-boot-starter</artifactId>
  4.  
    <version>3.3.0</version>
  5.  
    </dependency>

2、映射实体注解

 
  1.  
    /**
  2.  
    * 路径:com.example.demo.entity
  3.  
    * 类名:
  4.  
    * 功能:使用easypoi导出excel
  5.  
    * 备注:
  6.  
    * 创建人:typ
  7.  
    * 创建时间:2019/5/19 20:54
  8.  
    * 修改人:
  9.  
    * 修改备注:
  10.  
    * 修改时间:
  11.  
    */
  12.  
  13.  
    public class BrandInfo implements Serializable{
  14.  
     
  15.  
    @Excel(name = "brandGuid", width = 25,orderNum = "0")
  16.  
    private String brandGuid;
  17.  
     
  18.  
    @Excel(name = "brandName", width = 25,orderNum = "0")
  19.  
    private String brandName;
  20.  
     
  21.  
    @Excel(name = "ytFullcode", width = 25,orderNum = "0")
  22.  
    private String ytFullcode;
  23.  
     
  24.  
    @Excel(name = "formatGuid", width = 25,orderNum = "0")
  25.  
    private String formatGuid;
  26.  
     
  27.  
    @Excel(name = "flag", width = 25,orderNum = "0")
  28.  
    private String flag;
  29.  
     
  30.  
    @Excel(name = "customerid", width = 25,orderNum = "0")
  31.  
    private String customerid;
  32.  
     
  33.  
    @Excel(name = "createDatetime",width = 20,exportFormat = "yyyy-MM-dd HH:mm:ss", orderNum = "1")
  34.  
    private String createDatetime;
  35.  
     
  36.  
    @Excel(name = "updateDatetime",width = 20,exportFormat = "yyyy-MM-dd HH:mm:ss", orderNum = "1")
  37.  
    private String updateDatetime;
  38.  
     
  39.  
    @Excel(name = "source", width = 25,orderNum = "0")
  40.  
    private Integer source;
  41.  
     
  42.  
    }

3、查询数据

3.1、service接口:

 
  1.  
    public interface ExcelService {
  2.  
     
  3.  
    List<BrandInfo> list();
  4.  
    }

3.2、service实现类:

 
  1.  
    @Service
  2.  
    public class ExcelServiceImlp implements ExcelService {
  3.  
     
  4.  
    @Autowired
  5.  
    private ExcelMapper excelMapper;
  6.  
     
  7.  
    @Override
  8.  
    public List<BrandInfo> list() {
  9.  
    return excelMapper.list();
  10.  
    }
  11.  
    }

3.3、mapper接口 

 
  1.  
    @Mapper
  2.  
    public interface ExcelMapper {
  3.  
     
  4.  
    List<BrandInfo> list();
  5.  
    }

 3.4、mapper对应的xml

 
  1.  
    <?xml version="1.0" encoding="UTF-8"?>
  2.  
    <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
  3.  
     
  4.  
    <mapper namespace="com.example.demo.mapper.ExcelMapper">
  5.  
     
  6.  
    <select id="list" resultType="com.example.demo.entity.BrandInfo">
  7.  
    select brand_guid,brand_name,yt_fullcode,format_guid,flag,customerid,create_datetime,update_datetime,source from brand_info
  8.  
    </select>
  9.  
     
  10.  
    </mapper>

4、导出Controller

 
  1.  
    package com.example.demo.controller;
  2.  
     
  3.  
    import cn.afterturn.easypoi.excel.ExcelExportUtil;
  4.  
    import cn.afterturn.easypoi.excel.entity.ExportParams;
  5.  
    import com.example.demo.entity.BrandInfo;
  6.  
    import com.example.demo.service.ExcelService;
  7.  
    import org.apache.poi.ss.usermodel.Workbook;
  8.  
    import org.slf4j.Logger;
  9.  
    import org.slf4j.LoggerFactory;
  10.  
    import org.springframework.beans.factory.annotation.Autowired;
  11.  
    import org.springframework.web.bind.annotation.GetMapping;
  12.  
    import org.springframework.web.bind.annotation.RequestMapping;
  13.  
    import org.springframework.web.bind.annotation.RestController;
  14.  
     
  15.  
    import javax.servlet.http.HttpServletResponse;
  16.  
    import java.io.BufferedOutputStream;
  17.  
    import java.io.IOException;
  18.  
    import java.io.OutputStream;
  19.  
    import java.util.List;
  20.  
     
  21.  
    /**
  22.  
    * 路径:com.example.demo.controller
  23.  
    * 类名:EasyPoiExcelController
  24.  
    * 功能:使用easypoi注解进行导入导出
  25.  
    * 备注:
  26.  
    * 创建人:typ
  27.  
    * 创建时间:2019/5/19 20:00
  28.  
    * 修改人:
  29.  
    * 修改备注:
  30.  
    * 修改时间:
  31.  
    */
  32.  
    @RestController
  33.  
    @RequestMapping("/easypoi")
  34.  
    public class EasyPoiExcelController {
  35.  
     
  36.  
    private static final Logger log = LoggerFactory.getLogger(EasyPoiExcelController.class);
  37.  
     
  38.  
    @Autowired
  39.  
    public ExcelService excelService;
  40.  
     
  41.  
    /**
  42.  
    * 方法名:exportExcel
  43.  
    * 功能:导出
  44.  
    * 描述:
  45.  
    * 创建人:typ
  46.  
    * 创建时间:2019/5/19 20:03
  47.  
    * 修改人:
  48.  
    * 修改描述:
  49.  
    * 修改时间:
  50.  
    */
  51.  
    @GetMapping("/exportExcel")
  52.  
    public void exportExcel(HttpServletResponse response){
  53.  
    log.info("请求 exportExcel start ......");
  54.  
     
  55.  
    // 获取用户信息
  56.  
    List<BrandInfo> list = excelService.list();
  57.  
     
  58.  
    try {
  59.  
    // 设置响应输出的头类型及下载文件的默认名称
  60.  
    String fileName = new String("demo信息表.xls".getBytes("utf-8"), "ISO-8859-1");
  61.  
    response.addHeader("Content-Disposition", "attachment;filename=" + fileName);
  62.  
    response.setContentType("application/vnd.ms-excel;charset=gb2312");
  63.  
     
  64.  
    //导出
  65.  
    Workbook workbook = ExcelExportUtil.exportExcel(new ExportParams(), BrandInfo.class, list);
  66.  
    workbook.write(response.getOutputStream());
  67.  
    log.info("请求 exportExcel end ......");
  68.  
    } catch (IOException e) {
  69.  
    log.info("请求 exportExcel 异常:{}", e.getMessage());
  70.  
    }
  71.  
    }
  72.  
    }

5、浏览器请求 http://localhost:8081/easypoi/exportExcel导出结果如下

二、导入Excel

这里只是简单的测试了一下,没有把数据往数据库存储:

 
  1.  
    public static void main(String[] args) {
  2.  
    try{
  3.  
    // 没有使用实体类注解的形式,这里用的Map
  4.  
    List<Map<String,Object>> list = ExcelImportUtil.importExcel(
  5.  
    new File(PoiPublicUtil.getWebRootPath("check.xls")),
  6.  
    Map.class,
  7.  
    new ImportParams()
  8.  
    );
  9.  
    // 数据打印
  10.  
    for (Map<String, Object> map : list) {
  11.  
    System.out.println(JSON.toJSON(map));
  12.  
    }
  13.  
    } catch (Exception e){
  14.  
    log.info(" Excel 导入异常:{}", e.getMessage());
  15.  
    }
  16.  
    }

Excel原数据如图:

导入结果如下:

 
  1.  
    DEBUG 2019-05-31 14:54:06,466 cn.afterturn.easypoi.excel.imports.ExcelImportServer: Excel import start ,class is interface java.util.Map
  2.  
    DEBUG 2019-05-31 14:54:06,811 cn.afterturn.easypoi.excel.imports.ExcelImportServer: start to read excel by is ,startTime is 1559285646811
  3.  
    DEBUG 2019-05-31 14:54:06,812 cn.afterturn.easypoi.excel.imports.ExcelImportServer: end to read excel by is ,endTime is 1559285646811
  4.  
    DEBUG 2019-05-31 14:54:06,837 cn.afterturn.easypoi.excel.imports.ExcelImportServer: end to read excel list by pos ,endTime is 1559285646837
  5.  
    {"name":"zhangsan","password":123,"id":1,"sex":"男"}
  6.  
    {"name":"lisi","password":123456,"id":2,"sex":"男"}
  7.  
    {"name":"wangwu","password":10002,"id":3,"sex":"女"}
  8.  
    {"name":"zhaoliu","password":1587,"id":4,"sex":"男"}
  9.  
    {"name":"maqi","password":45987,"id":5,"sex":"女"}
  10.  
    {"name":"houjiu","password":23143,"id":6,"sex":"男"}
  11.  
    {"name":"jishi","password":4543645,"id":7,"sex":"男"}

 

解决不同浏览器导出excel中文名称乱码问题

在Windows上以上的导出都是正常,而在Max上导出时,文件名称包含中文时会乱码,只需添加一下代码就可以完美的解决名称乱码问题。

 
  1.  
    // 各浏览器基本都支持ISO编码
  2.  
    String userAgent = request.getHeader("User-Agent").toUpperCase();
  3.  
    if(userAgent.contains("TRIDENT") || userAgent.contains("EDGE")){
  4.  
    fileName = java.net.URLEncoder.encode(fileName, "UTF-8");
  5.  
    } else if(userAgent.contains("MSIE")) {
  6.  
    fileName = new String(fileName.getBytes(), "ISO-8859-1");
  7.  
    } else {
  8.  
    fileName = new String(fileName.getBytes("UTF-8"), "ISO-8859-1");
  9.  
    }
  10.  
    response.addHeader("Content-Disposition", String.format("attachment; filename=\"%s\"", fileName));

使用POI将HTML Table导出Excel

1、POI依赖

 
  1.  
    <dependency>
  2.  
    <groupId>org.apache.poi</groupId>
  3.  
    <artifactId>poi</artifactId>
  4.  
    <version>3.8</version>
  5.  
    </dependency>
  6.  
    <dependency>
  7.  
    <groupId>org.apache.poi</groupId>
  8.  
    <artifactId>poi-ooxml</artifactId>
  9.  
    <version>3.8</version>
  10.  
    </dependency>
  11.  
    <dependency>
  12.  
    <groupId>org.apache.poi</groupId>
  13.  
    <artifactId>poi-ooxml-schemas</artifactId>
  14.  
    <version>3.8</version>
  15.  
    </dependency>

2、导出工具类

2.1、使用HSSFWorkbook

 
  1.  
    package com.demo.utils;
  2.  
     
  3.  
    import com.demo.model.CrossRangeCellMeta;
  4.  
    import org.apache.commons.lang3.StringUtils;
  5.  
    import org.apache.commons.lang3.math.NumberUtils;
  6.  
    import org.apache.poi.hssf.usermodel.*;
  7.  
    import org.apache.poi.hssf.util.HSSFColor;
  8.  
    import org.apache.poi.ss.util.CellRangeAddress;
  9.  
    import org.dom4j.Document;
  10.  
    import org.dom4j.DocumentException;
  11.  
    import org.dom4j.DocumentHelper;
  12.  
    import org.dom4j.Element;
  13.  
     
  14.  
    import java.io.File;
  15.  
    import java.io.FileOutputStream;
  16.  
    import java.util.ArrayList;
  17.  
    import java.util.List;
  18.  
     
  19.  
     
  20.  
    /**
  21.  
    * 类名:Html2Excel.java
  22.  
    * 路径:com.demo.utils.Html2Excel.java
  23.  
    * 创建人:tanyp
  24.  
    * 创建时间:2019/9/19 10:00
  25.  
    * 功能:将html table转成excel
  26.  
    * 修改人:
  27.  
    * 修改时间:
  28.  
    * 修改备注:
  29.  
    */
  30.  
    public class Html2Excel {
  31.  
     
  32.  
    /**
  33.  
    * 方法名:table2Excel
  34.  
    * 功能:html表格转excel
  35.  
    * 创建人:tanyp
  36.  
    * 创建时间:2019/9/19 10:00
  37.  
    * 入参:html字符串:<table> ... </table>
  38.  
    * 出参:excel
  39.  
    * 修改人:
  40.  
    * 修改时间:
  41.  
    * 修改备注:
  42.  
    */
  43.  
    public static HSSFWorkbook table2Excel(String tableHtml) {
  44.  
    HSSFWorkbook wb = new HSSFWorkbook();
  45.  
    HSSFSheet sheet = wb.createSheet();
  46.  
    HSSFCellStyle style = wb.createCellStyle();
  47.  
    style.setAlignment(HSSFCellStyle.ALIGN_CENTER);
  48.  
    List<CrossRangeCellMeta> crossRowEleMetaLs = new ArrayList<>();
  49.  
    int rowIndex = 0;
  50.  
    try {
  51.  
    Document data = DocumentHelper.parseText(tableHtml);
  52.  
    // 生成表头
  53.  
    Element thead = data.getRootElement().element("thead");
  54.  
    HSSFCellStyle titleStyle = getTitleStyle(wb);
  55.  
    if (thead != null) {
  56.  
    List<Element> trLs = thead.elements("tr");
  57.  
    for (Element trEle : trLs) {
  58.  
    HSSFRow row = sheet.createRow(rowIndex);
  59.  
    List<Element> thLs = trEle.elements("th");
  60.  
    makeRowCell(thLs, rowIndex, row, 0, titleStyle, crossRowEleMetaLs);
  61.  
    row.setHeightInPoints(17);
  62.  
    rowIndex++;
  63.  
    }
  64.  
    }
  65.  
    // 生成表体
  66.  
    Element tbody = data.getRootElement().element("tbody");
  67.  
    if (tbody != null) {
  68.  
    HSSFCellStyle contentStyle = getContentStyle(wb);
  69.  
    List<Element> trLs = tbody.elements("tr");
  70.  
    for (Element trEle : trLs) {
  71.  
    HSSFRow row = sheet.createRow(rowIndex);
  72.  
    List<Element> thLs = trEle.elements("th");
  73.  
    int cellIndex = makeRowCell(thLs, rowIndex, row, 0, titleStyle, crossRowEleMetaLs);
  74.  
    List<Element> tdLs = trEle.elements("td");
  75.  
    makeRowCell(tdLs, rowIndex, row, cellIndex, contentStyle, crossRowEleMetaLs);
  76.  
    row.setHeightInPoints(18);
  77.  
    rowIndex++;
  78.  
    }
  79.  
    }
  80.  
    // 合并表头
  81.  
    for (CrossRangeCellMeta crcm : crossRowEleMetaLs) {
  82.  
    sheet.addMergedRegion(new CellRangeAddress(crcm.getFirstRow(), crcm.getLastRow(), crcm.getFirstCol(), crcm.getLastCol()));
  83.  
    }
  84.  
    } catch (DocumentException e) {
  85.  
    e.printStackTrace();
  86.  
    }
  87.  
    //自动调整列宽
  88.  
    for (int i = 0; i < 15; i++) {
  89.  
    sheet.autoSizeColumn((short) i);
  90.  
    }
  91.  
    return wb;
  92.  
    }
  93.  
     
  94.  
    /**
  95.  
    * 方法名:makeRowCell
  96.  
    * 功能:生产行内容
  97.  
    * 创建人:tanyp
  98.  
    * 创建时间:2019/9/19 10:01
  99.  
    * 入参:
  100.  
    * tdLs: th或者td集合;
  101.  
    * rowIndex: 行号;
  102.  
    * row: POI行对象;
  103.  
    * startCellIndex;
  104.  
    * cellStyle: 样式;
  105.  
    * crossRowEleMetaLs: 跨行元数据集合
  106.  
    * 出参:
  107.  
    * 修改人:
  108.  
    * 修改时间:
  109.  
    * 修改备注:
  110.  
    */
  111.  
    private static int makeRowCell(List<Element> tdLs, int rowIndex, HSSFRow row, int startCellIndex, HSSFCellStyle cellStyle, List<CrossRangeCellMeta> crossRowEleMetaLs) {
  112.  
    int i = startCellIndex;
  113.  
    for (int eleIndex = 0; eleIndex < tdLs.size(); i++, eleIndex++) {
  114.  
    int captureCellSize = getCaptureCellSize(rowIndex, i, crossRowEleMetaLs);
  115.  
    while (captureCellSize > 0) {
  116.  
    // 当前行跨列处理(补单元格)
  117.  
    for (int j = 0; j < captureCellSize; j++) {
  118.  
    row.createCell(i);
  119.  
    i++;
  120.  
    }
  121.  
    captureCellSize = getCaptureCellSize(rowIndex, i, crossRowEleMetaLs);
  122.  
    }
  123.  
    Element thEle = tdLs.get(eleIndex);
  124.  
    String val = thEle.getTextTrim();
  125.  
    if (StringUtils.isBlank(val)) {
  126.  
    Element e = thEle.element("a");
  127.  
    if (e != null) {
  128.  
    val = e.getTextTrim();
  129.  
    }
  130.  
    }
  131.  
    HSSFCell c = row.createCell(i);
  132.  
    if (NumberUtils.isNumber(val)) {
  133.  
    c.setCellValue(Double.parseDouble(val));
  134.  
    c.setCellType(HSSFCell.CELL_TYPE_NUMERIC);
  135.  
    } else {
  136.  
    c.setCellValue(val);
  137.  
    }
  138.  
    c.setCellStyle(cellStyle);
  139.  
    int rowSpan = NumberUtils.toInt(thEle.attributeValue("rowspan"), 1);
  140.  
    int colSpan = NumberUtils.toInt(thEle.attributeValue("colspan"), 1);
  141.  
    // 存在跨行或跨列
  142.  
    if (rowSpan > 1 || colSpan > 1) {
  143.  
    crossRowEleMetaLs.add(new CrossRangeCellMeta(rowIndex, i, rowSpan, colSpan));
  144.  
    }
  145.  
    // 当前行跨列处理(补单元格)
  146.  
    if (colSpan > 1) {
  147.  
    for (int j = 1; j < colSpan; j++) {
  148.  
    i++;
  149.  
    row.createCell(i);
  150.  
    }
  151.  
    }
  152.  
    }
  153.  
    return i;
  154.  
    }
  155.  
     
  156.  
    /**
  157.  
    * 方法名:getCaptureCellSize
  158.  
    * 功能:获得因rowSpan占据的单元格
  159.  
    * 创建人:tanyp
  160.  
    * 创建时间:2019/9/19 10:03
  161.  
    * 入参:
  162.  
    * rowIndex:行号
  163.  
    * colIndex:列号
  164.  
    * crossRowEleMetaLs:跨行列元数据
  165.  
    * 出参:当前行在某列需要占据单元格
  166.  
    * 修改人:
  167.  
    * 修改时间:
  168.  
    * 修改备注:
  169.  
    */
  170.  
    private static int getCaptureCellSize(int rowIndex, int colIndex, List<CrossRangeCellMeta> crossRowEleMetaLs) {
  171.  
    int captureCellSize = 0;
  172.  
    for (CrossRangeCellMeta crossRangeCellMeta : crossRowEleMetaLs) {
  173.  
    if (crossRangeCellMeta.getFirstRow() < rowIndex && crossRangeCellMeta.getLastRow() >= rowIndex) {
  174.  
    if (crossRangeCellMeta.getFirstCol() <= colIndex && crossRangeCellMeta.getLastCol() >= colIndex) {
  175.  
    captureCellSize = crossRangeCellMeta.getLastCol() - colIndex + 1;
  176.  
    }
  177.  
    }
  178.  
    }
  179.  
    return captureCellSize;
  180.  
    }
  181.  
     
  182.  
    /**
  183.  
    * 方法名:getTitleStyle
  184.  
    * 功能:获得标题样式
  185.  
    * 创建人:tanyp
  186.  
    * 创建时间:2019/9/19 10:04
  187.  
    * 入参:workbook
  188.  
    * 出参:
  189.  
    * 修改人:
  190.  
    * 修改时间:
  191.  
    * 修改备注:
  192.  
    */
  193.  
    private static HSSFCellStyle getTitleStyle(HSSFWorkbook workbook) {
  194.  
    short titlebackgroundcolor = HSSFColor.GREY_25_PERCENT.index;
  195.  
    short fontSize = 12;
  196.  
    String fontName = "宋体";
  197.  
    HSSFCellStyle style = workbook.createCellStyle();
  198.  
    style.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);
  199.  
    style.setAlignment(HSSFCellStyle.ALIGN_CENTER);
  200.  
    style.setBorderBottom((short) 1);
  201.  
    style.setBorderTop((short) 1);
  202.  
    style.setBorderLeft((short) 1);
  203.  
    style.setBorderRight((short) 1);
  204.  
    style.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);
  205.  
    // 背景色
  206.  
    style.setFillForegroundColor(titlebackgroundcolor);
  207.  
    HSSFFont font = workbook.createFont();
  208.  
    font.setFontName(fontName);
  209.  
    font.setFontHeightInPoints(fontSize);
  210.  
    font.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
  211.  
    style.setFont(font);
  212.  
    return style;
  213.  
    }
  214.  
     
  215.  
    /**
  216.  
    * 方法名:getContentStyle
  217.  
    * 功能:获得内容样式
  218.  
    * 创建人:tanyp
  219.  
    * 创建时间:2019/9/19 10:05
  220.  
    * 入参:HSSFWorkbook
  221.  
    * 出参:
  222.  
    * 修改人:
  223.  
    * 修改时间:
  224.  
    * 修改备注:
  225.  
    */
  226.  
    private static HSSFCellStyle getContentStyle(HSSFWorkbook wb) {
  227.  
    short fontSize = 12;
  228.  
    String fontName = "宋体";
  229.  
    HSSFCellStyle style = wb.createCellStyle();
  230.  
    style.setBorderBottom((short) 1);
  231.  
    style.setBorderTop((short) 1);
  232.  
    style.setBorderLeft((short) 1);
  233.  
    style.setBorderRight((short) 1);
  234.  
    HSSFFont font = wb.createFont();
  235.  
    font.setFontName(fontName);
  236.  
    font.setFontHeightInPoints(fontSize);
  237.  
    style.setFont(font);
  238.  
    return style;
  239.  
    }
  240.  
     
  241.  
    }

 异常:使用Html2Excel.java导出时列超过256时会报错:Invalid column index (256).  Allowable column range for BIFF8 is (0..255) or ('A'..'IV')。

原因:使用HSSFWorkbook最多只能创建256列,超过就会报上述的错误。

解决方法:使用XSSFWorkbook创建,最多可以创建16384列。修改Html2Excel工具类为XHtml2Excel.java,如下:

2.2、使用XSSFWorkbook

 
  1.  
    package com.demo.utils;
  2.  
     
  3.  
    import com.demo.model.CrossRangeCellMeta;
  4.  
    import org.apache.commons.lang3.StringUtils;
  5.  
    import org.apache.commons.lang3.math.NumberUtils;
  6.  
    import org.apache.poi.hssf.usermodel.HSSFCell;
  7.  
    import org.apache.poi.hssf.usermodel.HSSFCellStyle;
  8.  
    import org.apache.poi.hssf.usermodel.HSSFFont;
  9.  
    import org.apache.poi.hssf.util.HSSFColor;
  10.  
    import org.apache.poi.ss.util.CellRangeAddress;
  11.  
    import org.apache.poi.xssf.usermodel.*;
  12.  
    import org.dom4j.Document;
  13.  
    import org.dom4j.DocumentException;
  14.  
    import org.dom4j.DocumentHelper;
  15.  
    import org.dom4j.Element;
  16.  
     
  17.  
    import java.io.File;
  18.  
    import java.io.FileOutputStream;
  19.  
    import java.util.ArrayList;
  20.  
    import java.util.List;
  21.  
     
  22.  
     
  23.  
    /**
  24.  
    * 类名:XHtml2Excel.java
  25.  
    * 路径:com.demo.utils.XHtml2Excel.java
  26.  
    * 创建人:tanyp
  27.  
    * 创建时间:2019/9/19 10:00
  28.  
    * 功能:将html table转成excel
  29.  
    * 修改人:
  30.  
    * 修改时间:
  31.  
    * 修改备注:
  32.  
    */
  33.  
    public class XHtml2Excel {
  34.  
     
  35.  
    /**
  36.  
    * 方法名:table2Excel
  37.  
    * 功能:html表格转excel
  38.  
    * 创建人:tanyp
  39.  
    * 创建时间:2019/9/19 10:00
  40.  
    * 入参:html字符串:<table> ... </table>
  41.  
    * 出参:excel
  42.  
    * 修改人:
  43.  
    * 修改时间:
  44.  
    * 修改备注:
  45.  
    */
  46.  
    public static XSSFWorkbook table2Excel(String tableHtml) {
  47.  
    XSSFWorkbook wb = new XSSFWorkbook();
  48.  
    XSSFSheet sheet = wb.createSheet();
  49.  
    XSSFCellStyle style = wb.createCellStyle();
  50.  
    style.setAlignment(HSSFCellStyle.ALIGN_CENTER);
  51.  
    List<CrossRangeCellMeta> crossRowEleMetaLs = new ArrayList<>();
  52.  
    int rowIndex = 0;
  53.  
    try {
  54.  
    Document data = DocumentHelper.parseText(tableHtml);
  55.  
    // 生成表头
  56.  
    Element thead = data.getRootElement().element("thead");
  57.  
    XSSFCellStyle titleStyle = getTitleStyle(wb);
  58.  
    if (thead != null) {
  59.  
    List<Element> trLs = thead.elements("tr");
  60.  
    for (Element trEle : trLs) {
  61.  
    XSSFRow row = sheet.createRow(rowIndex);
  62.  
    List<Element> thLs = trEle.elements("th");
  63.  
    makeRowCell(thLs, rowIndex, row, 0, titleStyle, crossRowEleMetaLs);
  64.  
    row.setHeightInPoints(17);
  65.  
    rowIndex++;
  66.  
    }
  67.  
    }
  68.  
    // 生成表体
  69.  
    Element tbody = data.getRootElement().element("tbody");
  70.  
    if (tbody != null) {
  71.  
    XSSFCellStyle contentStyle = getContentStyle(wb);
  72.  
    List<Element> trLs = tbody.elements("tr");
  73.  
    for (Element trEle : trLs) {
  74.  
    XSSFRow row = sheet.createRow(rowIndex);
  75.  
    List<Element> thLs = trEle.elements("th");
  76.  
    int cellIndex = makeRowCell(thLs, rowIndex, row, 0, titleStyle, crossRowEleMetaLs);
  77.  
    List<Element> tdLs = trEle.elements("td");
  78.  
    makeRowCell(tdLs, rowIndex, row, cellIndex, contentStyle, crossRowEleMetaLs);
  79.  
    row.setHeightInPoints(18);
  80.  
    rowIndex++;
  81.  
    }
  82.  
    }
  83.  
    // 合并表头
  84.  
    for (CrossRangeCellMeta crcm : crossRowEleMetaLs) {
  85.  
    sheet.addMergedRegion(new CellRangeAddress(crcm.getFirstRow(), crcm.getLastRow(), crcm.getFirstCol(), crcm.getLastCol()));
  86.  
    }
  87.  
    } catch (DocumentException e) {
  88.  
    e.printStackTrace();
  89.  
    }
  90.  
    //自动调整列宽
  91.  
    for (int i = 0; i < 15; i++) {
  92.  
    sheet.autoSizeColumn((short) i);
  93.  
    }
  94.  
    return wb;
  95.  
    }
  96.  
     
  97.  
    /**
  98.  
    * 方法名:makeRowCell
  99.  
    * 功能:生产行内容
  100.  
    * 创建人:tanyp
  101.  
    * 创建时间:2019/9/19 10:01
  102.  
    * 入参:
  103.  
    * tdLs: th或者td集合;
  104.  
    * rowIndex: 行号;
  105.  
    * row: POI行对象;
  106.  
    * startCellIndex;
  107.  
    * cellStyle: 样式;
  108.  
    * crossRowEleMetaLs: 跨行元数据集合
  109.  
    * 出参:
  110.  
    * 修改人:
  111.  
    * 修改时间:
  112.  
    * 修改备注:
  113.  
    */
  114.  
    private static int makeRowCell(List<Element> tdLs, int rowIndex, XSSFRow row, int startCellIndex, XSSFCellStyle cellStyle, List<CrossRangeCellMeta> crossRowEleMetaLs) {
  115.  
    int i = startCellIndex;
  116.  
    for (int eleIndex = 0; eleIndex < tdLs.size(); i++, eleIndex++) {
  117.  
    int captureCellSize = getCaptureCellSize(rowIndex, i, crossRowEleMetaLs);
  118.  
    while (captureCellSize > 0) {
  119.  
    // 当前行跨列处理(补单元格)
  120.  
    for (int j = 0; j < captureCellSize; j++) {
  121.  
    row.createCell(i);
  122.  
    i++;
  123.  
    }
  124.  
    captureCellSize = getCaptureCellSize(rowIndex, i, crossRowEleMetaLs);
  125.  
    }
  126.  
    Element thEle = tdLs.get(eleIndex);
  127.  
    String val = thEle.getTextTrim();
  128.  
    if (StringUtils.isBlank(val)) {
  129.  
    Element e = thEle.element("a");
  130.  
    if (e != null) {
  131.  
    val = e.getTextTrim();
  132.  
    }
  133.  
    }
  134.  
    XSSFCell c = row.createCell(i);
  135.  
    if (NumberUtils.isNumber(val)) {
  136.  
    c.setCellValue(Double.parseDouble(val));
  137.  
    c.setCellType(HSSFCell.CELL_TYPE_NUMERIC);
  138.  
    } else {
  139.  
    c.setCellValue(val);
  140.  
    }
  141.  
    c.setCellStyle(cellStyle);
  142.  
    int rowSpan = NumberUtils.toInt(thEle.attributeValue("rowspan"), 1);
  143.  
    int colSpan = NumberUtils.toInt(thEle.attributeValue("colspan"), 1);
  144.  
    // 存在跨行或跨列
  145.  
    if (rowSpan > 1 || colSpan > 1) {
  146.  
    crossRowEleMetaLs.add(new CrossRangeCellMeta(rowIndex, i, rowSpan, colSpan));
  147.  
    }
  148.  
    // 当前行跨列处理(补单元格)
  149.  
    if (colSpan > 1) {
  150.  
    for (int j = 1; j < colSpan; j++) {
  151.  
    i++;
  152.  
    row.createCell(i);
  153.  
    }
  154.  
    }
  155.  
    }
  156.  
    return i;
  157.  
    }
  158.  
     
  159.  
    /**
  160.  
    * 方法名:getCaptureCellSize
  161.  
    * 功能:获得因rowSpan占据的单元格
  162.  
    * 创建人:tanyp
  163.  
    * 创建时间:2019/9/19 10:03
  164.  
    * 入参:
  165.  
    * rowIndex:行号
  166.  
    * colIndex:列号
  167.  
    * crossRowEleMetaLs:跨行列元数据
  168.  
    * 出参:当前行在某列需要占据单元格
  169.  
    * 修改人:
  170.  
    * 修改时间:
  171.  
    * 修改备注:
  172.  
    */
  173.  
    private static int getCaptureCellSize(int rowIndex, int colIndex, List<CrossRangeCellMeta> crossRowEleMetaLs) {
  174.  
    int captureCellSize = 0;
  175.  
    for (CrossRangeCellMeta crossRangeCellMeta : crossRowEleMetaLs) {
  176.  
    if (crossRangeCellMeta.getFirstRow() < rowIndex && crossRangeCellMeta.getLastRow() >= rowIndex) {
  177.  
    if (crossRangeCellMeta.getFirstCol() <= colIndex && crossRangeCellMeta.getLastCol() >= colIndex) {
  178.  
    captureCellSize = crossRangeCellMeta.getLastCol() - colIndex + 1;
  179.  
    }
  180.  
    }
  181.  
    }
  182.  
    return captureCellSize;
  183.  
    }
  184.  
     
  185.  
    /**
  186.  
    * 方法名:getTitleStyle
  187.  
    * 功能:获得标题样式
  188.  
    * 创建人:tanyp
  189.  
    * 创建时间:2019/9/19 10:04
  190.  
    * 入参:workbook
  191.  
    * 出参:
  192.  
    * 修改人:
  193.  
    * 修改时间:
  194.  
    * 修改备注:
  195.  
    */
  196.  
    private static XSSFCellStyle getTitleStyle(XSSFWorkbook workbook) {
  197.  
    short titlebackgroundcolor = HSSFColor.GREY_25_PERCENT.index;
  198.  
    short fontSize = 12;
  199.  
    String fontName = "宋体";
  200.  
    XSSFCellStyle style = workbook.createCellStyle();
  201.  
    style.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);
  202.  
    style.setAlignment(HSSFCellStyle.ALIGN_CENTER);
  203.  
    style.setBorderBottom((short) 1);
  204.  
    style.setBorderTop((short) 1);
  205.  
    style.setBorderLeft((short) 1);
  206.  
    style.setBorderRight((short) 1);
  207.  
    style.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);
  208.  
    // 背景色
  209.  
    style.setFillForegroundColor(titlebackgroundcolor);
  210.  
    XSSFFont font = workbook.createFont();
  211.  
    font.setFontName(fontName);
  212.  
    font.setFontHeightInPoints(fontSize);
  213.  
    font.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
  214.  
    style.setFont(font);
  215.  
    return style;
  216.  
    }
  217.  
     
  218.  
    /**
  219.  
    * 方法名:getContentStyle
  220.  
    * 功能:获得内容样式
  221.  
    * 创建人:tanyp
  222.  
    * 创建时间:2019/9/19 10:05
  223.  
    * 入参:HSSFWorkbook
  224.  
    * 出参:
  225.  
    * 修改人:
  226.  
    * 修改时间:
  227.  
    * 修改备注:
  228.  
    */
  229.  
    private static XSSFCellStyle getContentStyle(XSSFWorkbook wb) {
  230.  
    short fontSize = 12;
  231.  
    String fontName = "宋体";
  232.  
    XSSFCellStyle style = wb.createCellStyle();
  233.  
    style.setBorderBottom((short) 1);
  234.  
    style.setBorderTop((short) 1);
  235.  
    style.setBorderLeft((short) 1);
  236.  
    style.setBorderRight((short) 1);
  237.  
    XSSFFont font = wb.createFont();
  238.  
    font.setFontName(fontName);
  239.  
    font.setFontHeightInPoints(fontSize);
  240.  
    style.setFont(font);
  241.  
    return style;
  242.  
    }
  243.  
     
  244.  
    }

3、跨行列实体类

 
  1.  
    package com.demo.model;
  2.  
     
  3.  
    /**
  4.  
    * 类名:CrossRangeCellMeta.java
  5.  
    * 路径:com.winner.model.CrossRangeCellMeta.java
  6.  
    * 创建人:tanyp
  7.  
    * 创建时间:2019/9/19 10:00
  8.  
    * 功能:跨行元素元数据
  9.  
    * 修改人:
  10.  
    * 修改时间:
  11.  
    * 修改备注:
  12.  
    */
  13.  
    public class CrossRangeCellMeta {
  14.  
     
  15.  
    public CrossRangeCellMeta(int firstRowIndex, int firstColIndex, int rowSpan, int colSpan) {
  16.  
    super();
  17.  
    this.firstRowIndex = firstRowIndex;
  18.  
    this.firstColIndex = firstColIndex;
  19.  
    this.rowSpan = rowSpan;
  20.  
    this.colSpan = colSpan;
  21.  
    }
  22.  
     
  23.  
    private int firstRowIndex;
  24.  
    private int firstColIndex;
  25.  
    // 跨越行数
  26.  
    private int rowSpan;
  27.  
    // 跨越列数
  28.  
    private int colSpan;
  29.  
     
  30.  
    public int getFirstRow() {
  31.  
    return firstRowIndex;
  32.  
    }
  33.  
     
  34.  
    public int getLastRow() {
  35.  
    return firstRowIndex + rowSpan - 1;
  36.  
    }
  37.  
     
  38.  
    public int getFirstCol() {
  39.  
    return firstColIndex;
  40.  
    }
  41.  
     
  42.  
    public int getLastCol() {
  43.  
    return firstColIndex + colSpan - 1;
  44.  
    }
  45.  
     
  46.  
    public int getColSpan() {
  47.  
    return colSpan;
  48.  
    }
  49.  
    }

4、controller调用

 
  1.  
    /**
  2.  
    * 类名:Html2ExcelController.java
  3.  
    * 路径:com.demo.controller.Html2ExcelController.java
  4.  
    * 创建人:tanyp
  5.  
    * 创建时间:2019/9/19 10:00
  6.  
    * 功能:HTML table导出excel
  7.  
    * 修改人:
  8.  
    * 修改时间:
  9.  
    * 修改备注:
  10.  
    */
  11.  
    @Controller
  12.  
    public class Html2ExcelController {
  13.  
    private static final Logger log = LoggerFactory.getLogger(Html2ExcelController.class);
  14.  
     
  15.  
    /**
  16.  
    * 方法名:exportExcel
  17.  
    * 功能:导出
  18.  
    * 创建人:tanyp
  19.  
    * 创建时间:2019/9/19 11:07
  20.  
    * 入参:dataTable
  21.  
    * 出参:
  22.  
    * 修改人:
  23.  
    * 修改时间:
  24.  
    * 修改备注:
  25.  
    */
  26.  
    @RequestMapping("exportExcel")
  27.  
    public void exportExcel(HttpServletRequest request, HttpServletResponse response) {
  28.  
    try {
  29.  
    String dataTable = request.getParameter("dataTable");
  30.  
    String fileName = "测试"+System.currentTimeMillis()+".xls";
  31.  
    // 各浏览器基本都支持ISO编码
  32.  
    String userAgent = request.getHeader("User-Agent").toUpperCase();
  33.  
    if (userAgent.contains("TRIDENT") || userAgent.contains("EDGE")) {
  34.  
    fileName = java.net.URLEncoder.encode(fileName, "UTF-8");
  35.  
    } else if (userAgent.contains("MSIE")) {
  36.  
    fileName = new String(fileName.getBytes(), "ISO-8859-1");
  37.  
    } else {
  38.  
    fileName = new String(fileName.getBytes("UTF-8"), "ISO-8859-1");
  39.  
    }
  40.  
     
  41.  
    response.addHeader("Content-Disposition", String.format("attachment; filename=\"%s\"", fileName));
  42.  
    OutputStream os = new BufferedOutputStream(response.getOutputStream());
  43.  
    response.setContentType("application/vnd.ms-excel;charset=gb2312");
  44.  
    //将excel写入到输出流中
  45.  
    HSSFWorkbook workbook = Html2Excel.table2Excel(dataTable);
  46.  
    // XSSFWorkbook workbook = XHtml2Excel.table2Excel(dataTable);
  47.  
    workbook.write(os);
  48.  
    os.flush();
  49.  
    os.close();
  50.  
    } catch (Exception e) {
  51.  
    e.printStackTrace();
  52.  
    log.error("请求 exportExcel异常:{}", e.getMessage());
  53.  
    }
  54.  
    }
  55.  
    }

备注:使用两个不同工具类时导包不同(HSSFWorkbook或XSSFWorkbook) 。

5、HTML代码

 
  1.  
    <!DOCTYPE html>
  2.  
    <html>
  3.  
    <head>
  4.  
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  5.  
    <script type="text/javascript" src="js/jquery.js"></script>
  6.  
    </head>
  7.  
    <body>
  8.  
    <div onclick="download()">导出</div>
  9.  
    <div id="DateTable" style="overflow-x:scroll">
  10.  
    <table id="myTable" class="gridtable w2000"><thead><tr><th rowspan="2" style="min-width: 100px; max-width: 100px;width: 100px;">名称</th><th rowspan="2" style="min-width: 80px; max-width: 80px;width: 80px;">客流总量(人次)</th><th rowspan="2" style="min-width: 80px; max-width: 80px;width: 80px;">编码</th><th rowspan="2" style="min-width: 80px; max-width: 80px;width: 80px;">单客流总量(人次)</th><th colspan="3">时段客流(人次)</th></tr><tr><th style="min-width: 80px; max-width: 80px;width: 80px;">01:05</th><th style="min-width: 80px; max-width: 80px;width: 80px;">01:10</th><th style="min-width: 80px; max-width: 80px;width: 80px;">01:15</th></tr></thead><tbody id="pointBasedDateTbody"><tr><td rowspan="2">购物一号门</td><td rowspan="2">5006</td><td>C001</td><td>3006</td><td>0</td><td>0</td><td>0</td></tr><tr><td>C002</td><td>2000</td><td>0</td><td>0</td><td>0</td></tr><tr><td rowspan="2">购物二号门</td><td rowspan="2">2796</td><td>C001</td><td>1542</td><td>0</td><td>0</td><td>0</td></tr><tr><td>C002</td><td>1254</td><td>0</td><td>0</td><td>0</td></tr><tr><td rowspan="1">购物三号门</td><td rowspan="1">1654</td><td>C005</td><td>1654</td><td>0</td><td>0</td><td>0</td></tr><tr><td rowspan="1">购物四号门</td><td rowspan="1">54365</td><td>C001</td><td>54365</td><td>0</td><td>0</td><td>0</td></tr></tbody></table>
  11.  
    </div>
  12.  
    <form action="exportExcel" id="exportExcle" method="POST">
  13.  
    <input type="hidden" name="dataTable" id="dataTable">
  14.  
    </form>
  15.  
    </body>
  16.  
    <script>
  17.  
    function download() {
  18.  
    var html = $("#tables").html();
  19.  
    $("#dataTable").val(html);
  20.  
    $("#exportExcle").submit();
  21.  
    };
  22.  
    </script>
  23.  
    </html>

6、效果图

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!