I\'m reading an excel-file (file extension xlsx) using org.apache.poi 3.15.
This is my code:
try (FileInputStream fileInputStream = new FileInputStr
Use getCellType()
switch (cell.getCellType()) { case BOOLEAN : //To-do break; case NUMERIC: //To-do break; case STRING: //To-do break; }