美文网首页
easyexcel The maximum length of

easyexcel The maximum length of

作者: 624c95384278 | 来源:发表于2020-11-23 10:09 被阅读0次

    使用easyexcel向excel中写内容出现了单元格大小不能超过32,767的限制,这是因为excel 2007限制单个cell不能超过32767个字符,但是现在都2020年了。。。。将poi更新到最新版本仔细看看源码 org.apache.poi.ss.SpreadsheetVersion 中只用excel97 和excel2007俩个选项 ,XSSFCell 类被修饰为final 不能被继承重写版本校验方法。
    解决办法:
    在自己的项目文件夹下创建org.apache.poi.ss.SpreadsheetVersion 类,复制poi中的该类源码,excel2007中的最后一个值改为int类型最大值。重试导出问题解决。

    image.png

    相关文章

      网友评论

          本文标题:easyexcel The maximum length of

          本文链接:https://www.haomeiwen.com/subject/iifiiktx.html