SyntaxFix
Write A Post
Hire A Developer
Questions
As of Apache POI 3.17 you will have to check if the cell is empty using enumerations:
import org.apache.poi.ss.usermodel.CellType; if(cell == null || cell.getCellTypeEnum() == CellType.BLANK) { ... }