Pre Merge pull request !449 from tigerkidd/master

This commit is contained in:
tigerkidd
2022-05-01 12:24:21 +00:00
committed by Gitee

View File

@ -267,6 +267,8 @@ public class ExcelUtil<T>
if (StringUtils.isNotNull(cell))
{
String value = this.getCellValue(heard, i).toString();
// 处理excel出现表头有空的情况
value = value.trim();
cellMap.put(value, i);
}
else