解决POI读取Excel如何判断行是不是为空
答案:2 悬赏:80 手机版
解决时间 2021-03-10 13:51
- 提问者网友:寂寞梧桐
- 2021-03-09 17:21
解决POI读取Excel如何判断行是不是为空
最佳答案
- 五星知识达人网友:执傲
- 2021-03-09 18:22
poi没有提供原生的方法,需要自己写,参考我写的。
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;
}
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;
}
全部回答
- 1楼网友:长青诗
- 2021-03-09 18:48
自己写一个判断行空的方法:
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;
}
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯