Iterator<Row> rows = sheet.rowIterator();
while (rows.hasNext()) {
HSSFRow row = (HSSFRow) rows.next();
// Display the row number
log.debug(row.getRowNum());
Iterator<Cell> cells = row.cellIterator();
while (cells.hasNext()) {
HSSFCell cell = (HSSFCell) cells.next();
// Display the cell number of the current Row
switch (cell.getCellType()) {
case HSSFCell.CELL_TYPE_NUMERIC: {