poi读取excel的时候判断空行
public static boolean isRowEmpty(Row row) {
for (int c = row.getFirstCellNum(); c < row.getLastCellNum(); c++) {
Cell cell = row.getCell(c);
if (cell != null && cell.getCellType() != Cell.CELL_TYPE_BLANK)
return false;
}
return true;
}
sheet.getFirstRowNum()// 获取开始行位置
sheet.getLastRowNum()// 获取结束列位置
row.getFirstCellNum() // 获取开始列位置
row.getLastCellNum() // 获取结束列位置