我正在生成 HSSF 风格的工作簿。
创建新的 CellStyle 后,我的网格线消失了。我不想放 BorderStyle.DORDER_THIN 因为这不仅仅是网格线。我有更大的边缘。我试过在工作表 currentSheet.setDisplayGridlines(false)
我的代码:
HssfCellStyle hssfCellStyle = hssfWorkbook.createCellStyle
Font hssfFont = this.getFontFor(rowCellStyle.cellFont)
hssfCellStyle.setFont(hssfFont)
hssfCellStyle.setFillForegroundColor(rowCellStyle.backgroundColor.hssfColor.getIndex)
hssfCellStyle.setFillPattern(CellStyle.SOLID_FOREGROUND);
所以这会使gdi线消失