java学习之poi

2021/10/2 17:13:09

本文主要是介绍java学习之poi,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

遇到的问题

java.lang.NoClassDefFoundError: org/apache/commons/math3/util/ArithmeticUtils

需要添加commons-math3依赖

 

对07版的excel进行处理时

java.lang.NoClassDefFoundError: org/apache/commons/collections4/ListValuedMap

遇到过上面这个错误,无法排除,可能是英文依赖导入太乱七八糟了

重新开一个新的项目只导入以下依赖

<dependencies>
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi</artifactId>
            <version>5.0.0</version>
        </dependency>

        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi-ooxml</artifactId>
            <version>5.0.0</version>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter</artifactId>
            <version>RELEASE</version>
            <scope>compile</scope>
        </dependency>
    </dependencies>

程序正常执行没有出现任何错误,原因就是poi的版本和poi-ooxml版本不一致导致了诸多错误,poi和poi-ooxm的版本要一致!!!!!poi和poi-ooxm的版本要一致!!!!!poi和poi-ooxm的版本要一致!!!!!

要使用的依赖如下

<dependencies>
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi</artifactId>
            <version>5.0.0</version>
        </dependency>

        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi-ooxml</artifactId>
            <version>5.0.0</version>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter</artifactId>
            <version>RELEASE</version>
            <scope>compile</scope>
        </dependency>
    </dependencies>

 

 HSSFWorkbook

HSSFWorkbook用于处理03版的excel

创建03版的excel

 //创建03版的excel
    @Test
    public void a03() throws IOException {
        //创建一个工作簿
        Workbook workbook = new HSSFWorkbook();
        //创建一个工作表
        Sheet sheet = workbook.createSheet("学习人数统计");
        //创建行,行数从0开始
        Row row1 = sheet.createRow(0);
        //创建单元格,单元格也是从0开始
        Cell cell = row1.createCell(0);
        //设置内容
        cell.setCellValue("学习人数");
        //创建第二个单元格
        Cell cell1 = row1.createCell(1);
        cell1.setCellValue(888);

        //创建第二行
        Row row2 = sheet.createRow(1);
        //创建第二行的第一个单元格
        Cell cell21 = row2.createCell(0);
        cell21.setCellValue("回复人数");
        //创建第二个单元格
        Cell cell22 = row2.createCell(1);
        cell22.setCellValue(555);

        //创建文件
        FileOutputStream  fo = new FileOutputStream("B:\\maven项目\\dianmingqi\\poi.xls");
        //输出
        workbook.write(fo);
        //关闭流
        fo.close();
        System.out.println("完毕");
    }

读取03版的excel

//读取03版的excel
    @Test
    public void r03() throws IOException {
        //创建读的文件流
        FileInputStream fi = new FileInputStream("B:\\maven项目\\dianmingqi\\poi.xls");

        //创建一个工作簿,使用excel能操作的使用workbook对象都能进行操作
        Workbook workbook = new HSSFWorkbook(fi);
        //得到表,表的下标从0开始
        Sheet sheet = workbook.getSheetAt(0);
        //得到行
        Row row1 = sheet.getRow(0);
        //得到第一个单元格
        Cell cell1 = row1.getCell(0);
        //得到列的数据,数据类型要对应
        String str = cell1.getStringCellValue();
        System.out.println(str);
        //关闭流
        fi.close();
    }

XSSFWorkbook

XSSFWorkbook用于处理07版的excel

创建07版的excel

@Test
    public  void a07() throws IOException {
        //创建工作簿
        Workbook wk = new XSSFWorkbook();
        //创建表
        Sheet sheet = wk.createSheet("poi07");
        //创建第一行
        Row row1 = sheet.createRow(0);
        //创建第一个单元格
        Cell cell11 = row1.createCell(0);
        cell11.setCellValue("班级名称:");
        //创建第二个单元格
        Cell cell12 = row1.createCell(1);
        cell12.setCellValue("计8");
        //创建第二行
        Row row2 = sheet.createRow(1);
        //创建第一个单元格
        Cell cell21 = row2.createCell(0);
        cell21.setCellValue("班级人数");
        //创建第二个单元格
        Cell cell22 = row2.createCell(1);
        cell22.setCellValue("56");

        //创建文件
        FileOutputStream fo = new FileOutputStream("B:\\maven项目\\dianmingqi\\poi07.xlsx");
        wk.write(fo);
        wk.close();
        System.out.println("完成");
    }

读取07版的excel文件

@Test
    public void r07() throws IOException {
        //流
        FileInputStream fi = new FileInputStream("B:\\maven项目\\dianmingqi\\poi07.xlsx");
        //获得工作簿
        Workbook wk = new XSSFWorkbook(fi);
        //获得工作表
        Sheet sheet = wk.getSheetAt(0);
        //获得行
        Row row1 = sheet.getRow(0);
        //获得第一个单元格
        Cell cell1 = row1.getCell(0);
        String str = cell1.getStringCellValue();
        System.out.println(str);
        fi.close();

    }

 



这篇关于java学习之poi的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程