优化ExcelUtil空值处理

This commit is contained in:
Ricky 2021-04-21 09:53:14 +08:00
parent 2575c17f47
commit 2c94587263
1 changed files with 4 additions and 1 deletions

View File

@ -540,9 +540,12 @@ public class ExcelUtil<T>
cell.setCellValue(StringUtils.isNull(value) ? attr.defaultValue() : value + attr.suffix());
}
else if (ColumnType.NUMERIC == attr.cellType())
{
if (StringUtils.isNotNull(value))
{
cell.setCellValue(StringUtils.contains(Convert.toStr(value), ".") ? Convert.toDouble(value) : Convert.toInt(value));
}
}
else if (ColumnType.IMAGE == attr.cellType())
{
ClientAnchor anchor = new XSSFClientAnchor(0, 0, 0, 0, (short) cell.getColumnIndex(), cell.getRow().getRowNum(), (short) (cell.getColumnIndex() + 1),