我生成一张工作表,非常标准的标题标题和数据列。
我想打开工作表的“过滤器”功能,这样用户就可以轻松地对数据进行排序和过滤。
我可以使用POI吗?
答案 0 :(得分:51)
保存过滤区域中的第一个和最后一个单元格,然后执行:
sheet.setAutoFilter(new CellRangeAddress(firstCell.getRow(), lastCell.getRow(), firstCell.getCol(), lastCell.getCol()));
例如,从下面的表格中。
>x (x, y)
0123456
0|--hhh--| h = header
1|--+++--| + = values
2|--+++--| - = empty fields
3|--+++--|
4|-------|
第一个单元格将是第一个+
(2,1)单元格上方的标题。最后一个将是最后一个+
单元格(5,3)
答案 1 :(得分:2)
在标头上添加过滤器的最简单方法:
sheet.setAutoFilter(new CellRangeAddress(0, 0, 0, numColumns));
sheet.createFreezePane(0, 1);
答案 2 :(得分:0)
如果您还想以编程方式设置过滤器,可以使用以下命令:
void setAutoFilter(final XSSFSheet sheet, final int column, final String value) {
sheet.setAutoFilter(CellRangeAddress.valueOf("A1:Z1"));
final CTAutoFilter sheetFilter = sheet.getCTWorksheet().getAutoFilter();
final CTFilterColumn filterColumn = sheetFilter.addNewFilterColumn();
filterColumn.setColId(column);
final CTFilter filter = filterColumn.addNewFilters().insertNewFilter(0);
filter.setVal(value);
// We have to apply the filter ourselves by hiding the rows:
for (final Row row : sheet) {
for (final Cell c : row) {
if (c.getColumnIndex() == column && !c.getStringCellValue().equals(value)) {
final XSSFRow r1 = (XSSFRow) c.getRow();
if (r1.getRowNum() != 0) { // skip header
r1.getCTRow().setHidden(true);
}
}
}
}
}
相关的Gradle依赖项:
// https://mvnrepository.com/artifact/org.apache.poi/poi
compile group: 'org.apache.poi', name: 'poi', version: '3.9'
// https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml
compile group: 'org.apache.poi', name: 'poi-ooxml', version: '3.9'
// https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml-schemas
compile group: 'org.apache.poi', name: 'poi-ooxml-schemas', version: '3.9'
// https://mvnrepository.com/artifact/org.apache.poi/ooxml-schemas
compile group: 'org.apache.poi', name: 'ooxml-schemas', version: '1.3'
答案 3 :(得分:0)
我想出了如何用NPOI做到这一点
您将CT_AutoFilter添加到CT_Table。
我猜它对于POI和NPOI一样。
cttable.autoFilter = new CT_AutoFilter();
cttable.autoFilter.@ref = "A1:C5"; // value is data and includes header.
答案 4 :(得分:0)
使用sheet.setAutoFilter(CellRangeAddress.valueOf("B1:H1"));
我们只需要指定表格数据的标题单元格。在我的示例中,标题从单元格 B1 开始,并在单元格 H1 中结束。
Excel将自动在其下方找到数据,并将其显示在过滤器选项中。