1.简介:
Apache POI [是用Java编写的免费开源的跨平台的 Java API,Apache POI提供API给Java程式对Microsoft Office格式档案读和写的功能。其中使用最多的就是使用POI操作Excel文件。POI为“Poor Obfuscation Implementation”的首字母缩写,意为“简洁版的模糊实现”。
POI结构:
- 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格式档案的功能
maven坐标:
`<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>3.14</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>3.14</version>
</dependency>`
2.代码测试
从一个已经存在的Excel文件中读取数据
对象解析:
外汇名词解释https://www.fx61.com/definitions
- XSSFWorkbook:工作簿
- XSSFSheet:工作表
- Row:行
- Cell:单元格
`//原理:遍历工作表获得行,遍历行获得单元格,最终获取单元格中的值
public static void main(String[] args) throws IOException {
//创建工作簿
XSSFWorkbook workbook = new XSSFWorkbook("H:hn.xlsx");
//获取工作表,既可以根据工作表的顺序获取,也可以根据工作表的名称获取
XSSFSheet sheet = workbook.getSheetAt(0);
//遍历工作表获得行对象
for (Row row : sheet) {
//遍历行对象获取单元格对象
for (Cell cell : row) {
//获得单元格中的值
String value = cell.getStringCellValue();
System.out.println(value);
}
}
workbook.close();
}`
`//原理:获取工作表最后一个行号,从而根据行号获得行对象,通过行获取最后一个单元格索引,从而根据单元格索引获取每行的一个单元格对象
public static void main(String[] args) throws IOException {
//创建工作簿
XSSFWorkbook workbook = new XSSFWorkbook("H:hn.xlsx");
//获取工作表,既可以根据工作表的顺序获取,也可以根据工作表的名称获取
XSSFSheet sheet = workbook.getSheetAt(0);
//获取当前工作表最后一行的行号,行号从0开始
int lastRowNum = sheet.getLastRowNum();
for (int i = 0; i <= lastRowNum; i++) {
//根据行号获取行对象
XSSFRow row = sheet.getRow(i);
short lastCellNum = row.getLastCellNum();
for (short j = 0; j < lastCellNum; j++) {
String value = row.getCell(j).getStringCellValue();
System.out.println(value);
}
}
workbook.close();
}`
创建一个Excel文件并将数据写入到这个文件,最后通过输出流将内存中的Excel文件下载到磁盘
public static void main(String[] args) throws IOException {
//在内存中创建一个Excel文件
XSSFWorkbook workbook = new XSSFWorkbook();
//创建工作表,指定工作表名称
XSSFSheet sheet = workbook.createSheet("poi测试");
//创建行,0表示第一行
XSSFRow row = sheet.createRow(0);
//创建单元格,0表示第一个单元格
row.createCell(0).setCellValue("序号");
row.createCell(1).setCellValue("名字");
row.createCell(2).setCellValue("年龄");
XSSFRow row1 = sheet.createRow(1);
row1.createCell(0).setCellValue("1");
row1.createCell(1).setCellValue("张三");
row1.createCell(2).setCellValue("20");
XSSFRow row2 = sheet.createRow(2);
row2.createCell(0).setCellValue("2");
row2.createCell(1).setCellValue("李四");
row2.createCell(2).setCellValue("22");
//通过输出流将workbook对象下载到磁盘
FileOutputStream out = new FileOutputStream("D:test.xlsx");
workbook.write(out);
out.flush();
out.close();
workbook.close();
}
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。