我正在寻找一种使用Java的Apache POI设置Excel工作表背景颜色的方法
谢谢!
答案 0 :(得分:1)
编辑:
您可能需要将其应用于每个单元格/行样式。
How to apply background color for the rows in excel sheet using Apache POI?
另一个类似的例子/更好的解释:
答案 1 :(得分:0)
HSSFCellStyle cellStyle = workBook.createCellStyle();
style.setFillForegroundColor(IndexedColors.GREY_50_PERCENT.getIndex());
style.setFillPattern(CellStyle.SOLID_FOREGROUND);
cell.setCellStyle(style);