当前位置:   article > 正文

Apache POI对Excel进行读写操作

Apache POI对Excel进行读写操作
1、什么是Apache POI

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

image-20240531085649680

Apache POI 的应用场景:

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

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

  • 批量导入业务数据

2、简单使用Apache POI

Apache POI既可以将数据写入Excel文件

使用之前需要在项目的pom.xml文件中添加Apache POI的依赖。

<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>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
2.1、将数据写入Excel文件

实现效果

image-20240531143237595

代码实现

    /**
     * 写入excel
     * @throws Exception
     */
    @Test
    public void testWrite() throws Exception {
        //创建excel文件并写入磁盘

        //创建一个内存的excel文件对象
        XSSFWorkbook workbook = new XSSFWorkbook();
        //创建一个工作表 XSSFSheet
        XSSFSheet sheet = workbook.createSheet("demo");
        //创建数据 XSSRow,行号从0开始
        XSSFRow row = sheet.createRow(0);
        //根据XSSRow创建单元格并写入数据,单元格从0开始
        row.createCell(1).setCellValue("姓名");
        row.createCell(2).setCellValue("爱好");

        row = sheet.createRow(1);
        row.createCell(1).setCellValue("小林");
        row.createCell(2).setCellValue("编程");

        //创建文件输出流,保存到磁盘
        FileOutputStream fileInputStream = new FileOutputStream("d:/file/demo.xlsx");

        //将excel文件给到输出流保存
        workbook.write(fileInputStream);
        //关闭流
        workbook.close();
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
3、读取Excel文件中的数据

实现效果

image-20240531143509553

代码实现

    /**
     * 读取excel
     */
    @Test
    public void testRead() throws Exception {
        //读取excel
        //创建文件输入流
        FileInputStream fileInputStream = new FileInputStream("d:/file/demo.xlsx");
        //创建内存excel文件
        XSSFWorkbook xssfWorkbook = new XSSFWorkbook(fileInputStream);
        //根据XSSFWordbook对象,获取工作表对象
        XSSFSheet sheet = xssfWorkbook.getSheet("demo");
        //获取最后一行行号
        int lastRowNum = sheet.getLastRowNum();

        //遍历读取
        for (int i = 0; i <= lastRowNum; i++) {
            XSSFRow row = sheet.getRow(i);
            String cellValueOne = row.getCell(1).getStringCellValue();
            String cellValueTwo = row.getCell(2).getStringCellValue();
            System.out.println(cellValueOne + " " + cellValueTwo);
        }
        //关闭流
        fileInputStream.close();
        xssfWorkbook.close();
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/669121
推荐阅读
相关标签
  

闽ICP备14008679号