Java POI
简介
- Apache POI 是用Java编写的免费开源的跨平台的 Java API,Apache POI提供API给Java对Microsoft Office格式档案读和写的功能。POI为“Poor Obfuscation Implementation”的首字母缩写,意为“简洁版的模糊实现”。
结构
-
HSSF - 提供读写Microsoft Excel XLS格式档案的功能。
-
XSSF - 提供读写Microsoft Excel OOXML XLSX格式档案的功能。
-
HWPF - 提供读写Microsoft Word DOC格式档案的功能。
-
HSLF - 提供读写Microsoft PowerPoint格式档案的功能。
-
HDGF - 提供读Microsoft Visio格式档案的功能。
-
HPBF - 提供读Microsoft Publisher格式档案的功能。
-
HSMF - 提供读Microsoft Outlook格式档案的功能。
XSSF使用
依赖
-
poi针对旧版本的文件,poi-ooxml针对新版本的文件
-
<dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxml</artifactId> <version>3.16</version> </dependency> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>3.16</version> </dependency>
Excel概念
- 一个Excel文件就是一个工作簿
- 一个工作簿可以创建多个工作表
- 一个工作表有多行
- 一行有多个列
准备
-
Excel表格准备–
G:/处置建议模板_2022-04-12 16_45_14.xlsx
-
告警类型(必填) 告警类型(必填) 告警类型(必填) 处置建议(必填) 业务异常告警 短信告警 hjx测试
读取
-
/** * @Project: javaPoi-IDEA * @Package: com.hjx.xssf * @Description: TODO * @author: junxin.hu * @date: 2022/4/12 16:31 * @version: V2.0 */ public class TestExcel { public static void main(String[] args) { try { // 指定Excel的路径 FileInputStream fileInputStream = new FileInputStream("G:/处置建议模板_2022-04-12 16_45_14.xlsx"); XSSFWorkbook xssfWorkbook = new XSSFWorkbook(fileInputStream); System.out.println("xssfWorkbook对象:" + xssfWorkbook); //读取第一个工作表 XSSFSheet sheet = xssfWorkbook.getSheetAt(0); System.out.println("sheet对象:" + sheet); //获取总行数 int maxRow = sheet.getLastRowNum(); System.out.println("总行数为:" + maxRow); for (int row = 0; row <= maxRow; row++) { //获取每行的总列数 int maxRol = sheet.getRow(row).getLastCellNum(); System.out.println("--------第" + row + "行的数据如下--------"); for (int rol = 0; rol < maxRol; rol++) { System.out.print(sheet.getRow(row).getCell(rol)+" "); } System.out.println(); } } catch (IOException e) { e.printStackTrace(); } } }
-
xssfWorkbook对象:Name: /xl/workbook.xml - Content Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml sheet对象:Name: /xl/worksheets/sheet1.xml - Content Type: application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml 总行数为:1 --------第0行的数据如下-------- 告警类型(必填) 告警类型(必填) 告警类型(必填) 处置建议(必填) --------第1行的数据如下-------- 业务异常告警 短信告警 null hjx测试
生成
-
/** * * @Project: javaPoi-IDEA * @Package: com.hjx.xssf * @Description: TODO * @author: junxin.hu * @date: 2022/4/12 17:17 * @version: V2.0 */ public class TestExcel02 { public static void main(String[] args) { String path = "G:/测试.xlsx"; // Excel文档对象 XSSFWorkbook xssfWorkbook = new XSSFWorkbook(); // Excel工作表对象 XSSFSheet sheet = xssfWorkbook.createSheet("工作表1"); // 合并单元格(第一行、标题) CellRangeAddress cAddress = new CellRangeAddress(0, 0, 0, 2); sheet.addMergedRegion(cAddress); // 创建第一行 XSSFRow row1 = sheet.createRow(0); // 创建第一行的四列 for (int i = 0; i < 3; i++) { XSSFCell row1Cell = row1.createCell(i); row1Cell.setCellValue("告警类型(必填)"); } XSSFCell row1Cell = row1.createCell(3); row1Cell.setCellValue("处置建议(必填)"); // 创建第二行 XSSFRow row2 = sheet.createRow(1); // 创建第二行的四列 XSSFCell row2Cell1 = row2.createCell(0); row2Cell1.setCellValue("业务异常告警"); XSSFCell row2Cell2 = row2.createCell(1); row2Cell2.setCellValue("短信告警"); XSSFCell row2Cell3 = row2.createCell(2); row2Cell3.setCellValue(""); XSSFCell row2Cell4 = row2.createCell(3); row2Cell4.setCellValue("hjx测试"); try { FileOutputStream fileOutputStream = new FileOutputStream(path); xssfWorkbook.write(fileOutputStream); fileOutputStream.flush(); } catch (IOException e) { e.printStackTrace(); } } }