使用POI导出Excel

简介: 使用POI导出Excel

这次是参与一个老项目的维护工作,在测试的过程中发现有一个遗留的bug,数据导出时,当列超过256时,则超出的数据无法正常导出显示。查了一些资料才知道原来项目中使用的jxl本身有这个问题,需要更换成POI才能真正解决.

首先添加项目依赖,由于项目是老项目,依赖的jar包都没有拿最新的

<dependency>
    <groupId>org.apache.poi</groupId>
    <artifactId>poi</artifactId>
    <version>3.9</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
<dependency>
    <groupId>org.apache.poi</groupId>
    <artifactId>poi-ooxml</artifactId>
    <version>3.9</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml-schemas -->
<dependency>
    <groupId>org.apache.poi</groupId>
    <artifactId>poi-ooxml-schemas</artifactId>
    <version>3.9</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.xmlbeans/xmlbeans -->
<dependency>
    <groupId>org.apache.xmlbeans</groupId>
    <artifactId>xmlbeans</artifactId>
    <version>2.4.0</version>
</dependency>

这里还需要注意一个问题,就是xmlbeans的版本不能使用2.3.x及以前的,否则会报错,更新到2.4.0即可解决。

使用POI导出数据可以使用有三个组件

  • HSSFWorkbook 是操作Excel 2003及以前的版本,扩展名是*.xls
  • XSSFWorkbook 是操作Excel 2007后的版本,扩展名是*.xlsx
  • SXSSFWorkbook 从POI 3.8版本开始,提供了一种基于XSSF的低内存占用的SXSSF方式。对于大型excel文件的创建,一个关键问题就是,要确保不会内存溢出。

我这里使用 SXSSFWorkbook写了一个例子

import java.awt.Color;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.List;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.CellStyle;
import org.apache.poi.ss.usermodel.Font;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.util.CellRangeAddress;
import org.apache.poi.xssf.streaming.SXSSFCell;
import org.apache.poi.xssf.streaming.SXSSFSheet;
import org.apache.poi.xssf.streaming.SXSSFWorkbook;
import org.apache.poi.xssf.usermodel.XSSFColor;
public class Xml2ExcelUtil {
  public static void xmlToExcel(String title, String[] headerArray, List<String[]> dataList) {
    FileOutputStream out = null;
    try {
      SXSSFWorkbook workbook = new SXSSFWorkbook();
      SXSSFSheet sheet = (SXSSFSheet) workbook.createSheet(title);
      //设置默认单元格长度,表示12个字符的长度,这里需要先设置Column再设置Row才能生效
      //如果在数据填充时使用sheet.setColumnWidth(columnIndex, width)循环设置单元格长度的话非常耗时,不建议使用
      sheet.setDefaultColumnWidth(12);
      //设置默认行高,表示2个字符的高度
      sheet.setDefaultRowHeight((short) (2 * 256)); 
      // 产生表格标题行,下标是从0开始
      Row row = sheet.createRow(0);
      Cell cellTiltle = row.createCell(0);
      // sheet样式定义【getColumnTopStyle()/getStyle()均为自定义方法 - 在下面 - 可扩展】
      CellStyle style = getStyle(workbook); // 单元格样式对象
      
      //插入表格标题,并合并
      sheet.addMergedRegion(new CellRangeAddress(0, 0, 0, headerArray.length));
      cellTiltle.setCellStyle(style);
      cellTiltle.setCellValue(title);
      
      int titleRows = 1;//标题栏所占行数
      Row row2 = sheet.createRow(titleRows);//表格标题所在行
      for (int i = 0; i < headerArray.length; i++) {
        String text = headerArray[i];
        Cell cellName = row2.createCell(i);
        cellName.setCellType(SXSSFCell.CELL_TYPE_STRING); // 设置列头单元格的数据类型
        cellName.setCellValue(text); // 设置列头单元格的值
        cellName.setCellStyle(style); // 设置列头单元格样式
          
      }
      for (int i = 0; i < dataList.size(); i++) {
        String[] datas = dataList.get(i);
        Row dataRow = sheet.createRow(titleRows + 1 + i);// 标题栏所占行数+表格标题所占行数+当前第几行
        for (int j = 0; j < datas.length; j++) {
          String text = datas[j];
          Cell cellName = dataRow.createCell(j);
          cellName.setCellType(SXSSFCell.CELL_TYPE_STRING); // 设置单元格的数据类型
          cellName.setCellValue(text); // 设置单元格的值
          cellName.setCellStyle(style); // 设置单元格样式
        }
      }
      String filePath = "C:\\test\\";
      String fileName = "test-" + System.currentTimeMillis() + ".xlsx";
      out = new FileOutputStream(filePath+fileName);
      workbook.write(out);
      out.flush();
    } catch (IOException e) {
      e.printStackTrace();
    } finally {
      if (out != null) {
        try {
          out.close();
        } catch (IOException e) {
          e.printStackTrace();
        }
      }
    }
  }
  
  /*
   * 设置单元格样式
   */
  public static CellStyle getStyle(SXSSFWorkbook workbook) {
    // 设置字体
    Font font = workbook.createFont();
    // 设置字体大小
    font.setFontHeightInPoints((short) 10);
    // 字体加粗
    // font.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
    // 设置字体名字
    font.setFontName("Courier New");
    // 设置样式;
    CellStyle style = workbook.createCellStyle();
    // 设置底边框;
    style.setBorderBottom(CellStyle.BORDER_THIN);
    // 设置底边框颜色;
    style.setBottomBorderColor(new XSSFColor(new Color(0, 0, 0)).getIndexed());
    // 设置左边框;
    style.setBorderLeft(CellStyle.BORDER_THIN);
    // 设置左边框颜色;
    style.setLeftBorderColor(new XSSFColor(new Color(0, 0, 0)).getIndexed());
    // 设置右边框;
    style.setBorderRight(CellStyle.BORDER_THIN);
    // 设置右边框颜色;
    style.setRightBorderColor(new XSSFColor(new Color(0, 0, 0)).getIndexed());
    // 设置顶边框;
    style.setBorderTop(CellStyle.BORDER_THIN);
    // 设置顶边框颜色;
    style.setTopBorderColor(new XSSFColor(new Color(0, 0, 0)).getIndexed());
    // 在样式用应用设置的字体;
    style.setFont(font);
    // 设置自动换行;
    style.setWrapText(false);
    // 设置水平对齐的样式为居中对齐;
    style.setAlignment(CellStyle.ALIGN_CENTER);
    // 设置垂直对齐的样式为居中对齐;
    style.setVerticalAlignment(CellStyle.VERTICAL_CENTER);
    return style;
  }
}

当然也可以在web上使用,稍作修改即可

public static void xmlToExcel(String title, String[] headerArray, List<String[]> dataList, HttpServletResponse response) {
  OutputStream out = null;
  try {
    // 省略 ...
    String fileName = "test-" + System.currentTimeMillis() + ".xlsx";
    // 设置导出文件名,固定格式
    response.setHeader("Content-Disposition", "attachment;filename="+fileName);
    out = response.getOutputStream();
    workbook.write(out);
    out.flush();
  } catch (IOException e) {
    e.printStackTrace();
  } finally {
    if (out != null) {
      try {
        out.close();
      } catch (IOException e) {
        e.printStackTrace();
      }
    }
  }
}
相关文章
|
13天前
|
Java API Apache
|
17天前
|
存储 Java API
Java实现导出多个excel表打包到zip文件中,供客户端另存为窗口下载
Java实现导出多个excel表打包到zip文件中,供客户端另存为窗口下载
24 4
|
21天前
|
JavaScript 前端开发 数据处理
Vue导出el-table表格为Excel文件的两种方式
Vue导出el-table表格为Excel文件的两种方式
|
1月前
|
easyexcel Java UED
SpringBoot中大量数据导出方案:使用EasyExcel并行导出多个excel文件并压缩zip后下载
在SpringBoot环境中,为了优化大量数据的Excel导出体验,可采用异步方式处理。具体做法是将数据拆分后利用`CompletableFuture`与`ThreadPoolTaskExecutor`并行导出,并使用EasyExcel生成多个Excel文件,最终将其压缩成ZIP文件供下载。此方案提升了导出效率,改善了用户体验。代码示例展示了如何实现这一过程,包括多线程处理、模板导出及资源清理等关键步骤。
|
1月前
|
前端开发 JavaScript
💥【exceljs】纯前端如何实现Excel导出下载和上传解析?
本文介绍了用于处理Excel文件的库——ExcelJS,相较于SheetJS,ExcelJS支持更高级的样式自定义且易于使用。表格对比显示,ExcelJS在样式设置、内存效率及流式操作方面更具优势。主要适用于Node.js环境,也支持浏览器端使用。文中详细展示了如何利用ExcelJS实现前端的Excel导出下载和上传解析功能,并提供了示例代码。此外,还提供了在线调试的仓库链接和运行命令,方便读者实践。
286 5
|
1月前
|
前端开发 JavaScript Java
导出excel的两个方式:前端vue+XLSX 导出excel,vue+后端POI 导出excel,并进行分析、比较
这篇文章介绍了使用前端Vue框架结合XLSX库和后端结合Apache POI库导出Excel文件的两种方法,并对比分析了它们的优缺点。
226 0
|
1月前
|
数据采集 存储 JavaScript
自动化数据处理:使用Selenium与Excel打造的数据爬取管道
本文介绍了一种使用Selenium和Excel结合代理IP技术从WIPO品牌数据库(branddb.wipo.int)自动化爬取专利信息的方法。通过Selenium模拟用户操作,处理JavaScript动态加载页面,利用代理IP避免IP封禁,确保数据爬取稳定性和隐私性。爬取的数据将存储在Excel中,便于后续分析。此外,文章还详细介绍了Selenium的基本设置、代理IP配置及使用技巧,并探讨了未来可能采用的更多防反爬策略,以提升爬虫效率和稳定性。
|
3月前
|
关系型数据库 MySQL Shell
不通过navicat工具怎么把查询数据导出到excel表中
不通过navicat工具怎么把查询数据导出到excel表中
44 0
|
1月前
|
数据处理 Python
Python实用记录(十):获取excel数据并通过列表的形式保存为txt文档、xlsx文档、csv文档
这篇文章介绍了如何使用Python读取Excel文件中的数据,处理后将其保存为txt、xlsx和csv格式的文件。
45 3
Python实用记录(十):获取excel数据并通过列表的形式保存为txt文档、xlsx文档、csv文档
|
2月前
|
数据采集 存储 数据挖掘
使用Python读取Excel数据
本文介绍了如何使用Python的`pandas`库读取和操作Excel文件。首先,需要安装`pandas`和`openpyxl`库。接着,通过`read_excel`函数读取Excel数据,并展示了读取特定工作表、查看数据以及计算平均值等操作。此外,还介绍了选择特定列、筛选数据和数据清洗等常用操作。`pandas`是一个强大且易用的工具,适用于日常数据处理工作。