I\'m using Apache POI 3.6. I\'ve a column which is blank. I would like to be able to read it and then move to the next column. Even if I could resolve the
You need to check if cell!=null, because if a cell doesn't exist in a row, row.getCell(c) returns null
cell!=null
row.getCell(c)
null