使用 com.alibaba:easyexcel 导出excel文件时遇到的问题
创始人
2024-12-29 08:10:52
0

1.字符长度超出限制

java.lang.IllegalArgumentException: The maximum length of cell contents (text) is 32,767 characters

解决方案:

1. 把字符串截取前32767个字符
/**  * sqlText 字段导出 excel 时的转化器  */ public class SqlTextConverter implements Converter {     @Override     public WriteCellData convertToExcelData(WriteConverterContext context) throws Exception {         // 截取 SQL 语句前 32767 个字符         WriteCellData cellData = new WriteCellData<>();         String sqlText = context.getValue();         String splitSqlText = sqlText.substring(0,32767);         cellData.setData(splitSqlText);         cellData.setType(CellDataTypeEnum.STRING);         cellData.setStringValue(splitSqlText);         return cellData;     } }  

在实体类上加上注解

    @ExcelProperty(value = "SQL 语句", converter = SqlTextConverter.class)     @ColumnWidth(100)     private String sqlText; 
2.项目启动时统一修改最大长度
import org.apache.poi.ss.SpreadsheetVersion; import org.springframework.boot.CommandLineRunner; import org.springframework.stereotype.Component;  import java.lang.reflect.Field;  /**  * 统一修改 excel 列最大长度  */ @Component public class ApplicationCommandLine implements CommandLineRunner {     @Override     public void run(String... args) throws Exception {         SpreadsheetVersion spreadsheetVersion = SpreadsheetVersion.EXCEL2007;         Field maxTextLength = spreadsheetVersion.getClass().getDeclaredField("_maxTextLength");         maxTextLength.setAccessible(true);         maxTextLength.set(spreadsheetVersion, Integer.MAX_VALUE);     } }  

相关内容

热门资讯

做出回应!微乐自建房脚本免费下... 做出回应!微乐自建房脚本免费下载苹果版,微乐小程序黑科技,要领教程(有挂下载)-哔哩哔哩1、打开软件...
第5分钟插件!微信小程序游戏辅... 第5分钟插件!微信小程序游戏辅助器,微乐小程序黑科技,积累教程(有挂app)-哔哩哔哩1、微信小程序...
透视存在!微乐小程序挂哪里,微... 透视存在!微乐小程序挂哪里,微乐小程序黑科技,窍门教程(有挂app)-哔哩哔哩运微乐小程序挂哪里辅助...
五分钟辅助!微信微乐辅助器免费... 五分钟辅助!微信微乐辅助器免费安装,微乐小程序黑科技,积累教程(有挂app)-哔哩哔哩1、游戏颠覆性...
透视安装!微乐自建房辅助多少钱... 透视安装!微乐自建房辅助多少钱一个月,微乐小程序免费黑科技,绝活教程(有挂插件)-哔哩哔哩1、许多玩...
9分钟脚本!微乐小程序辅助开挂... 9分钟脚本!微乐小程序辅助开挂,微乐小程序免费黑科技,项目教程(有挂下载)-哔哩哔哩1、操作简单,无...
透视苹果版!微信微乐游戏辅助脚... 透视苹果版!微信微乐游戏辅助脚本,微乐小程序黑科技,指引教程(有挂修改器)-哔哩哔哩微信微乐游戏辅助...
第4分钟辅助!微信微乐自建房脚... 第4分钟辅助!微信微乐自建房脚本免费下载,微乐小程序黑科技,攻略教程(有挂工具)-哔哩哔哩1、微信微...
透视插件!微乐小程序辅助工具,... 透视插件!微乐小程序辅助工具,微乐小程序免费黑科技,讲义教程(有挂安装)-哔哩哔哩;1、微乐小程序免...
第6分钟脚本!微乐小程序免费黑... 第6分钟脚本!微乐小程序免费黑科技是真的吗,微乐小程序黑科技,积累教程(有挂安装)-哔哩哔哩1、点击...