Procházet zdrojové kódy

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

4.1.3.A
jueyue před 10 roky
rodič
revize
376848e404
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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 Zobrazit soubor

@@ -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);
}


Načítá se…
Zrušit
Uložit