0

我是 POI 的新手。我正在尝试在 Eclipse 中使用以下代码读取 xlsx 文件:

import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;

import org.apache.poi.ss.usermodel.Workbook;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;

public class excel {

    public static void main(String[] args) throws IOException {
        String excelFilePath = "Books.xlsx";
        FileInputStream inputStream = new FileInputStream(new File(excelFilePath));

        Workbook workbook = new XSSFWorkbook(inputStream);

    }
}

但是当我运行它时,我得到了这个:

线程“main”中的异常 java.lang.NoClassDefFoundError: org/apache/commons/collections4/ListValuedMap at excel.main(excel.java:19)

我能做些什么来阻止这个错误?

4

0 回答 0