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() // 获取结束列位置

posted @ 2020-05-22 17:59  余生大大  阅读(170)  评论(0编辑  收藏  举报