Poi.jar を使用して Excel シートから入力を取得しており、セルが空かどうかを確認する方法を知りたいと思っていました。
現在、以下のコードを使用しています。
cell = myRow.getCell(3);
if (cell != null) {
cell.setCellType(Cell.CELL_TYPE_STRING);
//System.out.print(cell.getStringCellValue() + "\t\t");
if (cell.getStringCellValue() != "")
depend[p] = Integer.parseInt(cell.getStringCellValue());
}
}