使用Apache POI HSSF从Excel工作表中删除行

时间:2009-12-02 18:45:14

标签: java apache excel row apache-poi

我正在使用Apache POi HSSF库将信息导入我的应用程序。问题是文件有一些额外/空行需要在解析之前先删除。

没有HSSFSheet.removeRow( int rowNum )方法。只有1个}}。这个问题是无法删除空行。例如:

removeRow( HSSFRow row )

在空行上给出NullPointerException,因为sheet.removeRow( sheet.getRow(rowNum) ); 返回null。 另外,正如我在论坛上看到的那样,getRow()只删除了单元格内容,但该行仍然是一个空行。

有没有一种方法可以删除行(空或不行)而不创建一个没有我要删除的行的全新工作表?

7 个答案:

答案 0 :(得分:27)

 /**
 * Remove a row by its index
 * @param sheet a Excel sheet
 * @param rowIndex a 0 based index of removing row
 */
public static void removeRow(HSSFSheet sheet, int rowIndex) {
    int lastRowNum=sheet.getLastRowNum();
    if(rowIndex>=0&&rowIndex<lastRowNum){
        sheet.shiftRows(rowIndex+1,lastRowNum, -1);
    }
    if(rowIndex==lastRowNum){
        HSSFRow removingRow=sheet.getRow(rowIndex);
        if(removingRow!=null){
            sheet.removeRow(removingRow);
        }
    }
}

答案 1 :(得分:8)

我知道,这是一个3岁的问题,但我最近必须解决同样的问题,我不得不用C#来做。这是我正在使用NPOI,.Net 4.0

的功能
    public static void DeleteRow(this ISheet sheet, IRow row)
    {
        sheet.RemoveRow(row);   // this only deletes all the cell values

        int rowIndex = row.RowNum;

        int lastRowNum = sheet.LastRowNum;

        if (rowIndex >= 0 && rowIndex < lastRowNum)
        {
            sheet.ShiftRows(rowIndex + 1, lastRowNum, -1);
        }
    }

答案 2 :(得分:3)

HSSFRow有一个名为setRowNum(int rowIndex)的方法。

当您必须“删除”某行时,将该索引放在List中。然后,当您到达非空的下一行时,从该列表中获取一个索引并将其设置为调用setRowNum(),并从该列表中删除索引。 (或者你可以使用队列)

答案 3 :(得分:3)

的内容
int newrownum=0;
for (int i=0; i<=sheet.getLastRowNum(); i++) {
  HSSFRow row=sheet.getRow(i);
  if (row) row.setRowNum(newrownum++);
}

应该这样做。

答案 4 :(得分:1)

我的特殊情况(对我有用):

    //Various times to delete all the rows without units
    for (int j=0;j<7;j++) {
      //Follow all the rows to delete lines without units (and look for the TOTAL row)
      for (int i=1;i<sheet.getLastRowNum();i++) {
        //Starting on the 2nd row, ignoring first one
        row = sheet.getRow(i);
        cell = row.getCell(garMACode);
        if (cell != null) 
        {
          //Ignore empty rows (they have a "." on first column)
          if (cell.getStringCellValue().compareTo(".") != 0) {  
            if (cell.getStringCellValue().compareTo("TOTAL") == 0) {
              cell = row.getCell(garMAUnits+1);
              cell.setCellType(HSSFCell.CELL_TYPE_FORMULA);
              cell.setCellFormula("SUM(BB1" + ":BB" + (i - 1) + ")");
            } else {
              cell = row.getCell(garMAUnits);
              if (cell != null) {
                int valor = (int)(cell.getNumericCellValue());
                if (valor == 0 ) {
                  //sheet.removeRow(row);
                  removeRow(sheet,i);
                }
              }
            }
          }
        }
      }
    }

答案 5 :(得分:1)

这个答案是对AndreAY的答案的延伸,给你完整的删除行的功能。

public boolean deleteRow(String sheetName, String excelPath, int rowNo) throws IOException {

    XSSFWorkbook workbook = null;
    XSSFSheet sheet = null;

    try {
        FileInputStream file = new FileInputStream(new File(excelPath));
        workbook = new XSSFWorkbook(file);
        sheet = workbook.getSheet(sheetName);
        if (sheet == null) {
            return false;
        }
        int lastRowNum = sheet.getLastRowNum();
        if (rowNo >= 0 && rowNo < lastRowNum) {
            sheet.shiftRows(rowNo + 1, lastRowNum, -1);
        }
        if (rowNo == lastRowNum) {
            XSSFRow removingRow=sheet.getRow(rowNo);
            if(removingRow != null) {
                sheet.removeRow(removingRow);
            }
        }
        file.close();
        FileOutputStream outFile = new FileOutputStream(new File(excelPath));
        workbook.write(outFile);
        outFile.close();


    } catch(Exception e) {
        throw e;
    } finally {
        if(workbook != null)
            workbook.close();
    }
    return false;
}

答案 6 :(得分:0)

我试图在一两年前重新回到我的大脑深处,以获得与POI相关的体验,但我的第一个问题是:为什么在解析之前需要删除这些行?为什么不从sheet.getRow(rowNum)调用中捕获空结果并继续前进?