5

我想永久删除那些没有任何类型数据的空行!我这样做是这样的:

 private void shift(File f){
    File F=f;
    HSSFWorkbook wb = null;
    HSSFSheet sheet=null;
    try{
    FileInputStream is=new FileInputStream(F);

    wb= new HSSFWorkbook(is);
    sheet = wb.getSheetAt(0);
    int rowIndex = 0;
    int lastRowNum = sheet.getLastRowNum();

   if (rowIndex >= 0 && rowIndex < lastRowNum) {
   sheet.shiftRows(rowIndex, lastRowNum, 500);
   }

        FileOutputStream fileOut = new FileOutputStream("C:/juni.xls");
         wb.write(fileOut);
         fileOut.close();
    }
    catch(Exception e){
        System.out.print("SERRO "+e);
    }

}

shiftRows() 之后我写了我的新文件。但是我的代码现在生效了。我只需要删除/删除数据中的空行(任何时候)。那么有可能这样做吗?如果是的话,我做得对吗?如果没有,有人可以帮我这样做吗?提前致谢!

4

2 回答 2

11

如果记忆回忆shiftRows(int startRow, int endRow, int n)是你所需要的。我不太记得如何检查一行是否为空,但如果您确实知道一行是空的(通常通过使用removeRow(Row row))并且您知道 rowIndex,那么它还不错。通过调用:

int rowIndex; //Assume already known and this is the row you want to get rid of
int lastIndex = sheet.getLastRowNum();
sheet.shiftRows(rowIndex + 1, lastIndex, -1);

您将 [rowIndex + 1, lastIndex] 中的每一行都向上移动 1(这应该有效地删除一个空行)。如果您有多行并且有办法确定该行是否为空,那么我建议如下:

for(int i = 0; i < sheet.getLastRowNum(); i++){
    if(isEmpty(sheet.getRow(i)){
        sheet.shiftRows(i + 1, sheet.getLastRowNum(), -1);
        i--;//Adjusts the sweep in accordance to a row removal
    }
}

boolean isEmpty(Row row){

//Code to determine if a row is empty

}

作为一个小注释,如果n是负数,则行向上移动。如果n为正,则行向下移动。所以我不太确定你是否打算在你提供的代码中将那块行向下移动 500。我希望这有帮助。

于 2013-06-22T04:31:22.047 回答
3

而不是shiftRows方法。试试removeRow方法。

欲了解更多信息,请查看此处

于 2013-06-22T01:59:34.127 回答