0
有人能告訴我如何迭代和刪除使用apache poi的excel文件中的所有空行嗎?我用我想刪除的行索引調用這2個函數,但第二個(移位)總是給我Minumum行索引爲0 exceltion。用JAVA刪除excel文件中的所有空行
public static void removeRow(HSSFSheet sheet, int rowIndex) {
HSSFRow removingRow = sheet.getRow(rowIndex);
if (removingRow != null) {
sheet.removeRow(removingRow);
}
}
public static void shiftRow(HSSFSheet sheet, int rowIndex) {
int lastRowNum = sheet.getLastRowNum();
if (rowIndex >= 0 && rowIndex < lastRowNum) {
sheet.shiftRows(rowIndex+1, rowIndex+1, -1);
}
}
感謝