项目场景:
问题描述
使用ExcelType.XSSF类型进行导出会报错 使用ExcelType.HSSF就不会
相关错误提示:
org.apache.poi.hssf.usermodel.HSSFRichTextString cannot be cast to org.apache.poi.xssf.usermodel.XSSFRichTextString
java.lang.ClassCastException: org.apache.poi.hssf.usermodel.HSSFRichTextString cannot be cast to org.apache.poi.xssf.usermodel.XSSFRichTextString
at org.apache.poi.xssf.usermodel.XSSFCell.setCellValue(XSSFCell.java:451)
at cn.afterturn.easypoi.excel.export.base.BaseExportService.createStringCell(BaseExportService.java:308)
原因分析:
org.apache.poi.hssf.usermodel.HSSFRichTextString cannot be cast to org.apache.poi.xssf.usermodel.XSSFRichTextString错误是因为 :
HSSFRichTextString 不能转XSSFRichTextString
但我调用方法给的是ExcelType.HSSF
我进行debug的时候发现这个配置默认变成了HSSF 然后我把easypoi升级为最新版本 在测试这个问题就解决了 以下文件是截图是新版本的
解决方案:
<!-- https://mvnrepository.com/artifact/cn.afterturn/easypoi-base -->
<dependency>
<groupId>cn.afterturn</groupId>
<artifactId>easypoi-base</artifactId>
<version>4.4.0</version>
</dependency>
ExportParams exportParams = new ExportParams();
exportParams.setType(ExcelType.XSSF);
调用方法,类型传 null
原文地址:https://blog.csdn.net/weixin_42326851/article/details/129188079
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_24406.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!