EasyExcel工具使用时报错:org/apache/poi/ss/usermodel/Date1904Support找不到

这篇具有很好参考价值的文章主要介绍了EasyExcel工具使用时报错:org/apache/poi/ss/usermodel/Date1904Support找不到。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

一、问题描述

1.报错翻译为 找不到这个Date1904Suppor这个类

        耗尽了我4的时间各种方法都试过了,最终还是没有从根源上找到这个问题的原因,目前只是怀疑导入的依赖本身有BUG;我工具类中,下载的方法是如下写的。

public <T> Boolean download(HttpServletResponse response, String name, List<T> data, Class<T> head, String sheet) throws IOException {
        String codeType = "UTF8";
        try {
            // 告诉浏览器用什么软件可以打开此文件
            response.setHeader("content-Type", "application/vnd.ms-excel");
            // 下载文件的默认名称
            response.setHeader("Content-Disposition", "attachment;filename=" + URLEncoder.encode(name + ".xlsx", codeType));
        } catch (UnsupportedEncodingException e) {
            log.error("设置响应头失败:", e);
            return false;
        }

        try {
            OutputStream outputStream = response.getOutputStream();
            EasyExcelFactory.write(outputStream, head)
                    .registerWriteHandler(new SimpleColumnWidthStyleStrategy(30))
                    .registerWriteHandler(new SimpleRowHeightStyleStrategy((short) 16, (short) 16))
                    .registerWriteHandler(setStyle())
                    .registerConverter(new LocalDateTimeStringConverter())
                    .sheet(sheet)
                    .doWrite(data);
       } catch (Exception e) {
            log.error("Excel文件下载", e);
            return false;
        }
        return true;
    }

 

        只要用postman发送请求,就报异常,excel文件可以下载,但是提示Excel文件格式损坏,并且只能更改扩展名为“xls”才能打开,打开之后无数据,并且为空文件。

二、问题解决

我这里没有对问题进行复现,觉得麻烦了。

这是我最开始直接引入的依赖

 <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>easyexcel-core</artifactId>
            <version>3.2.1</version>
<dependency>

本质上这个Eazyexcel还是引的poi的依赖,换了poi的版本,目前没报错了,之前一直报找不到一个类,所以还是换了poi的依赖版本

        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>easyexcel-core</artifactId>
            <version>3.2.1</version>
            <exclusions>
                <exclusion>
                    <groupId>org.apache.poi</groupId>
                    <artifactId>poi-ooxml</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.apache.poi</groupId>
                    <artifactId>poi</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.apache.poi</groupId>
                    <artifactId>poi-ooxml-schemas</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi-ooxml</artifactId>
            <version>5.2.3</version>
        </dependency>
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi</artifactId>
            <version>5.2.3</version>
        </dependency>
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi-ooxml-schemas</artifactId>
            <version>4.1.2</version>
        </dependency>

最后终于不报异常了,可以正常导入excel。

EasyExcel工具使用时报错:org/apache/poi/ss/usermodel/Date1904Support找不到

EasyExcel工具使用时报错:org/apache/poi/ss/usermodel/Date1904Support找不到 

 文件可以正常打开了,有excel工具类相关的问题,可以留言交流。希望能帮助到大家。文章来源地址https://www.toymoban.com/news/detail-506302.html

到了这里,关于EasyExcel工具使用时报错:org/apache/poi/ss/usermodel/Date1904Support找不到的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包