Explorar el Código

获取Head Cell值一个类型错误的bug

4.1.3.A
jueyue hace 10 años
padre
commit
376848e404
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      easypoi-base/src/main/java/org/jeecgframework/poi/excel/imports/ExcelImportServer.java

+ 1
- 1
easypoi-base/src/main/java/org/jeecgframework/poi/excel/imports/ExcelImportServer.java Ver fichero

@@ -361,7 +361,7 @@ public class ExcelImportServer {
int i = row.getFirstCellNum();
while (cellTitle.hasNext()) {
Cell cell = cellTitle.next();
String value = cell.getStringCellValue();
String value = getKeyValue(cell);
if (!StringUtils.isEmpty(value)) {
titlemap.put(i, value);
}


Cargando…
Cancelar
Guardar