Apache POI 使用

介绍

Apache POI 是一个处理 Miscrosoft Office 各种文件格式的开源项目。可以使用 POI 在 Java 程序中对 Miscrosoft Office 各种文件进行读写操作

一般情况下,POI 都是用于操作 Excel 文件

使用

1、maven 坐标

<dependency>
    <groupId>org.apache.poigroupId>
    <artifactId>poiartifactId>
    <version>3.16version>
dependency>
<dependency>
    <groupId>org.apache.poigroupId>
    <artifactId>poi-ooxmlartifactId>
    <version>3.16version>
dependency>

2、常用方法

  • 创建/读取 一个 excel 对象:new XSSFWorkbook([InputStream])
  • 得到第一个 sheet 页:xSSFWorkbook.getSheetAt(0)
  • 得到第一行:xSSFSheet.getRow(0)
  • 得到第一列:xSSFRow.getCell(0)
  • 向第一列写入数据:xSSFCell.setCellValue("数据")
  • 向浏览器响应数据:xSSFWorkbook.write(OutputStream)

3、编程

//【写】
//在内存中创建一个Excel文件对象
XSSFWorkbook excel = new XSSFWorkbook();
//创建Sheet页
XSSFSheet sheet = excel.createSheet("名字");

//在Sheet页中创建行,0表示第1行
XSSFRow row1 = sheet.createRow(0);
//创建单元格并在单元格中设置值,单元格编号也是从0开始,1表示第2个单元格
row1.createCell(1).setCellValue("姓名");
row1.createCell(2).setCellValue("城市");

XSSFRow row2 = sheet.createRow(1);
row2.createCell(1).setCellValue("张三");
row2.createCell(2).setCellValue("北京");

FileOutputStream out = new FileOutputStream(new File("D:\\xtl.xlsx"));
//通过输出流将内存中的Excel文件写入到磁盘上
excel.write(out);

//关闭资源
out.flush();
out.close();
excel.close();
//=======================================
//【读】
FileInputStream in = new FileInputStream(new File("D:\\xtl.xlsx"));
//通过输入流读取指定的Excel文件
XSSFWorkbook excel = new XSSFWorkbook(in);
//获取Excel文件的第1个Sheet页
XSSFSheet sheet = excel.getSheetAt(0);

//获取Sheet页中的最后一行的行号
int lastRowNum = sheet.getLastRowNum();

for (int i = 0; i <= lastRowNum; i++) {
    //获取Sheet页中的行
    XSSFRow titleRow = sheet.getRow(i);
    //获取行的第2个单元格
    XSSFCell cell1 = titleRow.getCell(1);
    //获取单元格中的文本内容
    String cellValue1 = cell1.getStringCellValue();
    //获取行的第3个单元格
    XSSFCell cell2 = titleRow.getCell(2);
    //获取单元格中的文本内容
    String cellValue2 = cell2.getStringCellValue();

    System.out.println(cellValue1 + " " +cellValue2);
}

//关闭资源
in.close();
excel.close();

你可能感兴趣的:(项目相关,apache,excel)