0

在我的工作中,我使用的是 cells-2.3.1.jar。我想过滤列并使用这些过滤值,而不保存到文件并重新加载它,只在内存中工作。

这是我的代码:

Worksheet worksheet = workbook.getWorksheets().getSheet(0);
 AutoFilter autoFilter = worksheet.getAutoFilter();
 autoFilter.filter(2, nameValue);
 autoFilter.filter(4, countryValue);

// At this point if I insert workbook.save("file.xls"), this file contains the right values
//But I don't need and don´t want to write to disk


//However shows all the values

 Cells cells = worksheet.getCells();
 for (int fila = 1; fila <= cells.getMaxRow(); fila++) {
            System.out.println("Name: " + ((String) cells.getCell(fila,2).getValue()).trim());
            System.out.println("Country: " + ((String) cells.getCell(fila, 4).getValue()).trim());
        }

对不起我的英语不好。提前谢谢。

4

1 回答 1

0

这里有一个示例http://www.aspose.com/docs/display/cellsjava/AutoFilter它将工作簿保存在磁盘中,就像您所做的那样;所以我认为你只需要保留对你的Worksheet对象的引用

于 2014-10-27T20:07:25.747 回答