Apache POC(对Excel文件操作)

介绍

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

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

Apache POI的maven坐标:

      <!-- poi -->
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi-ooxml</artifactId>
        </dependency>

Test写入测试

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.FileOutputStream;

/**
 * @author Mtz
 * @version 1.0
 * @2023/9/2214:33
 * @function
 * @comment
 */
public class POITest {


    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(0);
        // 在创建单元格并且写入文件内容
        row.createCell(1).setCellValue("城市");
        row.createCell(2).setCellValue("姓名");

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

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

        FileOutputStream out = new FileOutputStream(("D:\\info.xlsx"));
        excel.write(out);

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

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

Test读取测试

    public static  void read() throws Exception{
        FileInputStream in = new FileInputStream("D:\\info.xlsx");

        XSSFWorkbook excel = new XSSFWorkbook(in);

        // 读取Excel文件中的第一个sheet页
        XSSFSheet sheetAt = excel.getSheetAt(0);

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

        for (int i = 1; i <= lastRowNum; i++) {
            XSSFRow row = sheetAt.getRow(i);

            String stringCellValue = row.getCell(1).getStringCellValue();
            String stringCellValue2 = row.getCell(1).getStringCellValue();
            System.out.println(stringCellValue+" "+stringCellValue2);
        }
        in.close();
        excel.close();
    }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值