How do I check if a CELL in excel sheet is empty and doesn't have any content inside it? I am traversing a row from left to right, and want to stop when I encounter an empty cell. I am using
cell.getType()==CellType.EMPTY
but it doesn't seem to work. Also,
if(cell.getContents() == "") is also not working.
What is the condition to check if the cell is a blank cell?
Thanks Abhishek S