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行が消えます