使用java操作Excel文件(5) HSSFCell cell = row.getCell( (short) j); if (cell == null) result[i][j] = "blank"; else { switch (cell.getCellType()) { case 1: result[i][j] = cell.getStringCellValue(); break; case 0: result[i][j] = cell.getNumericCellValue() + ""; break; case HSSFCell.CELL_TYPE_FORMULA: