Apache POI(处理Miscrosoft Office各种文件格式)

文章目录


一、Apache POI介绍

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

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

二、应用场景

Apache POI 的应用场景:

  • 银行网银系统导出交易明细

  • 各种业务系统导出Excel报表

  • 批量导入业务数据

三、使用步骤

1.导入maven坐标

代码如下(示例):

java 复制代码
<dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi</artifactId>
            <version>3.16</version>
</dependency>
<dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi-ooxml</artifactId>
            <version>3.16</version>
</dependency>

2.写入代码讲解

在内存中创建一个Excel文件:

java 复制代码
XSSFWorkbook excel=new XSSFWorkbook();

在Excel文件中创建一个Sheet页:

java 复制代码
XSSFSheet sheet=excel.createSheet("info");

在Sheet中创建行对象,rownum编号从0开始:

java 复制代码
XSSFRow row=sheet.createRow(1);

创建单元格并且写入文件内容:

java 复制代码
row.createCell(1).setCellValue("姓名");
row.createCell(2).setCellValue("城市");

//创建一个新行:

java 复制代码
 row=sheet.createRow(2);
 row.createCell(1).setCellValue("张三");
 row.createCell(2).setCellValue("北京");

通过输出流将内存中的Excel文件写入到磁盘:

java 复制代码
FileOutputStream out=new FileOutputStream(new File("D:\\info.xlsx"));
excel.write(out);

关闭资源:

java 复制代码
out.close();
excel.close();

全部代码如下:

java 复制代码
package com.sky.test;

import org.apache.poi.xssf.usermodel.XSSFRow;
import org.apache.poi.xssf.usermodel.XSSFSheet;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;

import java.io.File;
import java.io.FileOutputStream;

public class POITest {

    /**
     * 通过POI创建Excel文件并且写入文件内容
     */
    public static void write() throws Exception{
        //在内存中创建一个Excel文件
        XSSFWorkbook excel=new XSSFWorkbook();
        //在Excel文件中创建一个Sheet页
        XSSFSheet sheet=excel.createSheet("info");
        //在Sheet中创建行对象,rownum编号从0开始
        XSSFRow row=sheet.createRow(1);
        //创建单元格并且写入文件内容
        row.createCell(1).setCellValue("姓名");
        row.createCell(2).setCellValue("城市");

        //创建一个新行
        row=sheet.createRow(2);
        row.createCell(1).setCellValue("张三");
        row.createCell(2).setCellValue("北京");

        //创建一个新行
        row=sheet.createRow(3);
        row.createCell(1).setCellValue("李四");
        row.createCell(2).setCellValue("南京");

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

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

    }

    public static void main(String[] args) throws Exception{
        write();
    }

}

效果如下:

3.读取代码讲解

创建文件读取流:

java 复制代码
 InputStream in =new FileInputStream(("D:\\info.xlsx"));

读取磁盘上已经存在的Excel文件:

java 复制代码
XSSFWorkbook excel=new XSSFWorkbook(in);

读取Excel文件中的第一个Sheet页:

java 复制代码
XSSFSheet sheet=excel.getSheetAt(0);

获取Sheet中最后一行的行号:

java 复制代码
int lastRowNum = sheet.getLastRowNum();

输出:

java 复制代码
for(int i = 1; i <= lastRowNum ; i++){
            //获得某一行
            XSSFRow row = sheet.getRow(i);
            //获得单元格对象
            String cellValue1 = row.getCell(1).getStringCellValue();
            String cellValue2 = row.getCell(2).getStringCellValue();
            System.out.println(cellValue1+"  "+cellValue2);

        }

关闭资源:

java 复制代码
in.close();
excel.close();

完整代码如下:

java 复制代码
package com.sky.test;

import org.apache.poi.xssf.usermodel.XSSFRow;
import org.apache.poi.xssf.usermodel.XSSFSheet;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.InputStream;

public class POITest {

    /**
     * 通过POI创建Excel文件并且写入文件内容
     */
    public static void write() throws Exception{
        //在内存中创建一个Excel文件
        XSSFWorkbook excel=new XSSFWorkbook();
        //在Excel文件中创建一个Sheet页
        XSSFSheet sheet=excel.createSheet("info");
        //在Sheet中创建行对象,rownum编号从0开始
        XSSFRow row=sheet.createRow(1);
        //创建单元格并且写入文件内容
        row.createCell(1).setCellValue("姓名");
        row.createCell(2).setCellValue("城市");

        //创建一个新行
        row=sheet.createRow(2);
        row.createCell(1).setCellValue("张三");
        row.createCell(2).setCellValue("北京");

        //创建一个新行
        row=sheet.createRow(3);
        row.createCell(1).setCellValue("李四");
        row.createCell(2).setCellValue("南京");

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

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

    }

    /**
     * 通过POI读取Excel文件中的内容
     * @throws Exception
     */
    public static void read() throws  Exception{
        //创建文件读取流
        InputStream in =new FileInputStream(("D:\\info.xlsx"));

        //读取磁盘上已经存在的Excel文件
        XSSFWorkbook excel=new XSSFWorkbook(in);
        //读取Excel文件中的第一个Sheet页
        XSSFSheet sheet=excel.getSheetAt(0);
        //获取Sheet中最后一行的行号
        int lastRowNum = sheet.getLastRowNum();

        for(int i = 1; i <= lastRowNum ; i++){
            //获得某一行
            XSSFRow row = sheet.getRow(i);
            //获得单元格对象
            String cellValue1 = row.getCell(1).getStringCellValue();
            String cellValue2 = row.getCell(2).getStringCellValue();
            System.out.println(cellValue1+"  "+cellValue2);

        }

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


    public static void main(String[] args) throws Exception{
        //write();
        read();
    }

}

总结

以上就是Apache POI(处理Miscrosoft Office各种文件格式)的相关知识点,希望对你有所帮助。

积跬步以至千里,积怠惰以至深渊。时代在这跟着你一起努力哦!

相关推荐
Aloudata10 小时前
从Apache Atlas到Aloudata BIG,数据血缘解析有何改变?
大数据·apache·数据血缘·主动元数据·数据链路
小钱c717 小时前
Mac下安装Apache JMeter并启动
jmeter·macos·apache
FserSuN2 天前
Apache Calcite - 查询优化之自定义优化规则
apache·calcite
黑风风2 天前
Ubuntu 22 安装 Apache Doris 3.0.3 笔记
笔记·ubuntu·apache
网络安全指导员3 天前
常见网络安全设备默认口令
服务器·网络·安全·web安全·php·apache
Mr_Xuhhh4 天前
Linux第一个小程序-进度条
linux·运维·visualstudio·小程序·编辑器·apache
风口上的吱吱鼠4 天前
20241031 Apache2修改日志里面的时间格式
服务器·apache
小刘同学++4 天前
在 Ubuntu 22.04 上部署Apache 服务, 访问一张照片
linux·ubuntu·apache
cgqyw5 天前
Apache 负载均衡详细配置步骤
运维·apache·负载均衡
Mitch3115 天前
【环境搭建】Apache Kylin 各个版本Docker搭建汇总
docker·apache·kylin