我正在使用数据库中的数据填充模板Excel工作表:
for (Map<String, Object> resultRow : dbResults) {
if ((currentRow = sheet.getRow(currentDataRow)) == null) {
currentRow = sheet.createRow(currentDataRow); // Creates a new row.
}
//currentRow.getRowStyle().setHidden(false);
for (int i = 0; i < resultColumns; i++) {
currentCell = currentRow.getCell(i, Row.CREATE_NULL_AS_BLANK);
setCellValue(currentCell, resultRow.get(dbcolumnNames[i]));
}
currentDataRow += 1;
}
// How to hide all empty/Un-used rows following currentDataRow ?
旨在实现:
- 我希望隐藏填充行后面的未使用行吗?
- 所有已填充的行必须可见。
- 例如:如果填充了第1 100个数据行,则应隐藏101及以后的行。
请帮忙!!
答案 0 :(得分:5)
Row r = sheet.getRow(indexRow);
if ( r!=null ) {
r.setZeroHeight(true);
}
答案 1 :(得分:3)
POI会在您创建工作表时识别工作表中的逻辑行数。 因此,当您用100行填充它时,它将创建100条记录。当您使用默认布局在Excel中打开XLS时,其余部分将出现 - 但这些不是POI记录。
您必须在最后一个数据记录之后创建一些虚拟行
for (int i=currentDataRow ;i<65000;i++)
sheet.createRow(i);
创建单元格样式,并将其设置为隐藏
CellStyle hiddenstyle = workBook.createCellStyle();
hiddenstyle.setHidden(true);
为从最后一行到表格末尾的所有行设置此样式
while (rows.hasNext()){
Row row1 = rows.next ();
row1.setRowStyle(hiddenstyle);
}
答案 2 :(得分:3)
row.setRowStye()
和row.getRowStye()
。