Apache POI的简单使用记录
Posted 碳烤小肥羊。。。
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Apache POI的简单使用记录相关的知识,希望对你有一定的参考价值。
Apache POI
1. POI介绍
Apache POI
是用Java
编写的免费开源的跨平台的Java API
,Apache POI
提供API
给Java
程序对Microsoft Office
格式档案读和写的功能,其中使用最多的就是使用POI
操作Excel
文件。
注意:jxl
是专门操作Excel
的。
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>
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格式档案的功能
2. 入门案例
2.1 从Excel文件读取数据
使用POI
可以从一个已经存在的Excel
文件中读取数据
XSSFWorkbook workbook = new XSSFWorkbook("D:\\\\hello.xlsx");
XSSFSheet sheet = workbook.getSheetAt(0);
for (Row row : sheet)
for (Cell cell : row)
String value = cell.getStringCellValue();
System.out.println(value);
workbook.close();
通过上面的入门案例可以看到,POI
操作Excel
表格封装了几个核心对象:
XSSFWorkbook:工作簿
XSSFSheet:工作表
Row:行
Cell:单元格
上面案例是通过遍历工作表获得行,遍历行获得单元格,最终获取单元格中的值。
还有一种方式就是获取工作表最后一个行号,从而根据行号获得行对象,通过行获取最后一个单元格索引,从而根据单元格索引获取每行的一个单元格对象,代码如下:
XSSFWorkbook workbook = new XSSFWorkbook("D:\\\\hello.xlsx");
XSSFSheet sheet = workbook.getSheetAt(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();
2.2 向Excel文件写入数据
使用POI
可以在内存中创建一个Excel
文件并将数据写入到这个文件,最后通过输出流将内存中的Excel
文件下载到磁盘
XSSFWorkbook workbook = new XSSFWorkbook();
XSSFSheet sheet = workbook.createSheet("测试表");
XSSFRow row = sheet.createRow(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("10");
XSSFRow row2 = sheet.createRow(2);
row2.createCell(0).setCellValue("2");
row2.createCell(1).setCellValue("小王");
row2.createCell(2).setCellValue("20");
FileOutputStream out = new FileOutputStream("D:\\\\itcast.xlsx");
workbook.write(out);
out.flush();
out.close();
workbook.close();
3. 通用的POIUtils
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.List;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.ss.usermodel.Workbook;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
import org.springframework.web.multipart.MultipartFile;
public class POIUtils
private final static String xls = "xls";
private final static String xlsx = "xlsx";
private final static String DATE_FORMAT = "yyyy/MM/dd";
public static List<String[]> readExcel(MultipartFile file) throws IOException
checkFile(file);
Workbook workbook = getWorkBook(file);
List<String[]> list = new ArrayList<String[]>();
if(workbook != null)
for(int sheetNum = 0;sheetNum < workbook.getNumberOfSheets();sheetNum++)
Sheet sheet = workbook.getSheetAt(sheetNum);
if(sheet == null)
continue;
int firstRowNum = sheet.getFirstRowNum();
int lastRowNum = sheet.getLastRowNum();
for(int rowNum = firstRowNum+1;rowNum <= lastRowNum;rowNum++)
Row row = sheet.getRow(rowNum);
if(row == null)
continue;
int firstCellNum = row.getFirstCellNum();
int lastCellNum = row.getPhysicalNumberOfCells();
String[] cells = new String[row.getPhysicalNumberOfCells()];
for(int cellNum = firstCellNum; cellNum < lastCellNum;cellNum++)
Cell cell = row.getCell(cellNum);
cells[cellNum] = getCellValue(cell);
list.add(cells);
workbook.close();
return list;
public static void checkFile(MultipartFile file) throws IOException
if(null == file)
throw new FileNotFoundException("文件不存在!");
String fileName = file.getOriginalFilename();
if(!fileName.endsWith(xls) && !fileName.endsWith(xlsx))
throw new IOException(fileName + "不是excel文件");
public static Workbook getWorkBook(MultipartFile file)
String fileName = file.getOriginalFilename();
Workbook workbook = null;
try
InputStream is = file.getInputStream();
if(fileName.endsWith(xls))
workbook = new HSSFWorkbook(is);
else if(fileName.endsWith(xlsx))
workbook = new XSSFWorkbook(is);
catch (IOException e)
e.printStackTrace();
return workbook;
public static String getCellValue(Cell cell)
String cellValue = "";
if(cell == null)
return cellValue;
String dataFormatString = cell.getCellStyle().getDataFormatString();
if(dataFormatString.equals("m/d/yy"))
cellValue = new SimpleDateFormat(DATE_FORMAT).format(cell.getDateCellValue());
return cellValue;
if(cell.getCellType() == Cell.CELL_TYPE_NUMERIC)
cell.setCellType(Cell.CELL_TYPE_STRING);
switch (cell.getCellType())
case Cell.CELL_TYPE_NUMERIC:
cellValue = String.valueOf(cell.getNumericCellValue());
break;
case Cell.CELL_TYPE_STRING:
cellValue = String.valueOf(cell.getStringCellValue());
break;
case Cell.CELL_TYPE_BOOLEAN:
cellValue = String.valueOf(cell.getBooleanCellValue());
break;
case Cell.CELL_TYPE_FORMULA:
cellValue = String.valueOf(cell.getCellFormula());
break;
case Cell.CELL_TYPE_BLANK:
cellValue = "";
break;
case Cell.CELL_TYPE_ERROR:
cellValue = "非法字符";
break;
default:
cellValue = "未知类型";
break;
return cellValue;
Apache POI 合并单元格--简单解释版带Demo
合并单元格所使用的方法:
sheet.addMergedRegion( CellRangeAddress cellRangeAddress );
CellRangeAddress 对象的构造方法需要传入合并单元格的首行、最后一行、首列、最后一列。
CellRangeAddress cra=new CellRangeAddress(0, 3, 3, 9);
怎样把数据写入合并后的单元格中
- 首先要查看你 CellRangeAddress 构造方法的firstcol index
- 创建firstcol cell对象
- cell 的set 方法写数据
在合并单元格的后一个位置写数据
- 查看 CellRangeAddress 构造方法的lastcol index
- 创建lastcol+1 cell
- cell 的set方法写数据
以下是demo:
1 FileOutputStream fos=new FileOutputStream("D:\\13.xls");
2
3 Workbook wb=new HSSFWorkbook();
4
5 Sheet sheet=wb.createSheet();
6 /*
7 * 设定合并单元格区域范围
8 * firstRow 0-based
9 * lastRow 0-based
10 * firstCol 0-based
11 * lastCol 0-based
12 */
13 CellRangeAddress cra=new CellRangeAddress(0, 3, 3, 9);
14
15 //在sheet里增加合并单元格
16 sheet.addMergedRegion(cra);
17
18 Row row = sheet.createRow(0);
19
20 Cell cell_1 = row.createCell(3);
21
22 cell_1.setCellValue("When you‘re right , no one remembers, when you‘re wrong ,no one forgets .");
23
24 //cell 位置3-9被合并成一个单元格,不管你怎样创建第4个cell还是第5个cell…然后在写数据。都是无法写入的。
25 Cell cell_2 = row.createCell(10);
26
27 cell_2.setCellValue("what‘s up ! ");
28
29 wb.write(fos);
30
31 fos.close();
以上是关于Apache POI的简单使用记录的主要内容,如果未能解决你的问题,请参考以下文章
Apache-POI 简单应用
Apache POI读取和创建Excel ----01(简单操作)
Apache POI 合并单元格--简单解释版带Demo
使用apache poi - 检测到Zip Bomb
雷林鹏分享:Apache POI工作簿
雷林鹏分享:Apache POI工作簿