I catch my cells from an .xls file like this:
cell.getStringCellValue();
But since some of the cells are numeric, I have to do this instead:
try using cell.getCellType() as you have