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
commit 0c7f10a5da
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

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