|
@@ -110,7 +110,8 @@ public class ExcelUtil {
|
|
|
}
|
|
|
if(cell != null){
|
|
|
String stringCellValue = cell.getStringCellValue();
|
|
|
- log.info(stringCellValue);
|
|
|
+ log.info(stringCellValue.trim());
|
|
|
+ log.info(cell.toString().trim());
|
|
|
String value = fommartNum(cell.toString().trim());
|
|
|
map.put(cellNum,value);
|
|
|
}
|