67,549
社区成员




int rowCount = sheet.getPhysicalNumberOfRows();
for(int i=0; i<rowCount; i++) {
HSSFRow row = sheet.getRow(i);
if(null != row && row.getFirstCellNum() > -1) {
rowNums++;
}
}
Row row = sheet.getRow(i);
if (row == null) {
continue;
}