mirror of https://github.com/elunez/eladmin
parent
264b3cb79d
commit
76b600eecc
|
@ -248,7 +248,8 @@ public class FileUtil extends cn.hutool.core.io.FileUtil {
|
||||||
SXSSFCell currentCell = currentRow.getCell(columnNum);
|
SXSSFCell currentCell = currentRow.getCell(columnNum);
|
||||||
if (currentCell.getCellTypeEnum() == CellType.STRING) {
|
if (currentCell.getCellTypeEnum() == CellType.STRING) {
|
||||||
int length = currentCell.getStringCellValue().getBytes().length;
|
int length = currentCell.getStringCellValue().getBytes().length;
|
||||||
if (columnWidth < length) {
|
// 如果长度大于最大值 65280,那就取 length
|
||||||
|
if (columnWidth < length || (columnWidth * 256 > 65280)) {
|
||||||
columnWidth = length;
|
columnWidth = length;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue