其他分享
首页 > 其他分享> > POI 导出异常报错

POI 导出异常报错

作者:互联网

异常描述:The maximum column width for an individual cell is 255 characters.

翻译:单个单元格的最大列宽是255个字符

解决:根据content长度设置单元格宽度时,判断是否超出最大列宽

int cellMaxWidth = 255 * 256;
int contentWidth = content.getBytes(StandardCharsets.UTF_8).length * 256;
if (contentWidth > cellMaxWidth) {
    //对于较长字段,设置一行最多展示30个汉字,UTF一个汉字占3个字节
    cell.getSheet().setColumnWidth(columnIndex,30 * 256 * 3);
}

标签:content,int,导出,cell,报错,POI,contentWidth,256,255
来源: https://blog.csdn.net/qq_27789551/article/details/116206254