标签:turn for public 读取 空格 ring row tla 使用
public int getRealRowNum(Sheet sheet) { int rowNum = sheet.getLastRowNum()-1; while(rowNum > 0 ){ Row row = sheet.getRow(rowNum+1); if (row != null) { for (Cell cell : row) { if (!StringUtils.isEmpty(getCellValue(cell))); return rowNum; } } rowNum--; } return rowNum; }
使用POI读取EXCEL时,使用getLastRowNum()方法会把没有值的行也获取到(比如行中有空格)。空行并没有意义,此方法返回有效的行数。
标签:turn for public 读取 空格 ring row tla 使用
原文地址:http://www.cnblogs.com/xioruu/p/6516220.html