导入公共方法修改

This commit is contained in:
yuezhihang
2022-03-07 16:28:21 +08:00
parent dd53ddd73c
commit bf5908d27a
@@ -162,7 +162,7 @@ public class ExcelImportUtilByWk {
returnValue = df.format(doubleValue);
break;
case STRING: //字符串
returnValue = cell.getStringCellValue();
returnValue = cell.getStringCellValue().trim();
break;
case BOOLEAN: //布尔
Boolean booleanValue = cell.getBooleanCellValue();