I\'m reading an excel-file (file extension xlsx) using org.apache.poi 3.15.
This is my code:
try (FileInputStream fileInputStream = new FileInputStr
From the documentation:
int getCellType() Deprecated. POI 3.15. Will return a CellType enum in the future. Return the cell type. Will return CellType in version 4.0 of POI. For forwards compatibility, do not hard-code cell type literals in your code.
int getCellType() Deprecated. POI 3.15. Will return a CellType enum in the future.
int getCellType()
CellType
Return the cell type. Will return CellType in version 4.0 of POI. For forwards compatibility, do not hard-code cell type literals in your code.