gpt4 book ai didi

grails - Grails 2.5.2和Apache POI-ClassNotFoundException

转载 作者:行者123 更新时间:2023-12-02 15:54:08 25 4
gpt4 key购买 nike

我需要从一个小的Grails应用程序中将一些数据导出到Excel。为此,我在BuildConfig中添加了以下依赖项:

    dependencies {            
compile 'org.apache.poi:poi-ooxml:3.13'
compile 'org.apache.poi:poi-ooxml-schemas:3.13'
}

每当我尝试利用这些库时,我都会遇到ClassNotFoundException。下面的代码重现为错误:
    Workbook workbook = new XSSFWorkbook()
Sheet sheet = workbook.createSheet("Title")
Row row = sheet.createRow(0)
// Make first header row:
row.createCell(0).setCellValue("Header1")

调用 row.createCell(0).setCellValue("Header1")产生以下stacktrace-message:
Class
java.lang.ClassNotFoundException
Message
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTExtensionList

最初,我只包括 poi-ooxml,但是jar-finder搜索表明该类包含在 poi-ooxml-schemas中,因此我也包括了该类。但是它仍然不起作用。代码可以正常编译,并在运行时发生错误。

有什么建议么?我错过了什么还是什么?

最佳答案

apache POI exception in reading xlsx files重复的帖子

两种解决方案:

  • 降级到3.9
  • 使用完整的模式jar文件(〜15mb)
  • 关于grails - Grails 2.5.2和Apache POI-ClassNotFoundException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35171815/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com