Apache POI java对excel表格进行操作(读、写) 有代码!!!

文章末尾有全部的代码

1、通过 POI 创建Excel文件并且写入文件内容

public static void write() throws Exception{
        // 在内存中创建一个Excel文件
        XSSFWorkbook excel = new XSSFWorkbook();
        // 在Excel文件中创建一个sheet页(程创建Excel默认是没有sheet的)
        XSSFSheet sheet =excel.createSheet("info");
        // 在Sheet中创建行对象,rownum编号从0开始  此处创建了能对第2行进行操作的对象
        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();
    }

 该方法运行结果:

Apache POI java对excel表格进行操作(读、写) 有代码!!!_第1张图片

2、通过POI读取Excel文件内容

public static void read() throws Exception{
        // 读取磁盘上已经存在的Excel文件 传入参数需是对应Excel文件路径的输入流对象
        InputStream in = new FileInputStream(new File("D:\\info.xlsx"));

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

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

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

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

该方法运行结果:

Apache POI java对excel表格进行操作(读、写) 有代码!!!_第2张图片

3、全部代码:

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;

/**
 * 使用POI操作Excel文件
 */
public class POITest {

    /**
     * 通过POI创建Excel文件并且写入文件内容
     */
    public static void write() throws Exception{
        // 在内存中创建一个Excel文件
        XSSFWorkbook excel = new XSSFWorkbook();
        // 在Excel文件中创建一个sheet页(程创建Excel默认是没有sheet的)
        XSSFSheet sheet =excel.createSheet("info");
        // 在Sheet中创建行对象,rownum编号从0开始  此处创建了能对第2行进行操作的对象
        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文件内容
     */
    public static void read() throws Exception{
        // 读取磁盘上已经存在的Excel文件 传入参数需是对应Excel文件路径的输入流对象
        InputStream in = new FileInputStream(new File("D:\\info.xlsx"));

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

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

        for (int i = 0; i <= lastRowNum ; i++) {
            // 获得某一行
            XSSFRow row = sheet.getRow(i);
            // 获得单元格对象
            if (row != null){
                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,java,excel,数据库,开发语言,缓存,spring,boot)