...
|
...
|
@@ -18,6 +18,8 @@ import java.io.InputStream; |
|
|
import java.util.ArrayList;
|
|
|
import java.util.List;
|
|
|
|
|
|
import static org.apache.poi.ss.usermodel.CellType.STRING;
|
|
|
|
|
|
/**
|
|
|
* shenhailong
|
|
|
* 2020/4/27/14:29
|
...
|
...
|
@@ -143,7 +145,7 @@ public class ExcelUtils { |
|
|
if (hssfCell == null) {
|
|
|
rowList.add("");
|
|
|
} else {
|
|
|
hssfCell.setCellType(Cell.CELL_TYPE_STRING);
|
|
|
hssfCell.setCellType(STRING);
|
|
|
rowList.add(String.valueOf(hssfCell.getStringCellValue()));
|
|
|
}
|
|
|
}
|
...
|
...
|
|