31

我一遍又一遍地扫描这个论坛并尝试了这里提到的所有方法,但仍然无法让 Apache POI 更改以填充我的 excel 文档的背景颜色。

这是我的代码:

errorOccured = true;
XSSFCellStyle cs = workbook.createCellStyle();
cs.setFillBackgroundColor(IndexedColors.RED.getIndex());
row.getCell(0).setCellStyle(cs);

你知道为什么这行不通吗?row.getCell(0)填充红色(背景色)的正确方法是什么?

谢谢!

4

1 回答 1

65

使用前景色而不是背景色。

 errorOccured = true;
 XSSFCellStyle style = workbook.createCellStyle();
 style.setFillForegroundColor(IndexedColors.RED.getIndex());
 style.setFillPattern(FillPatternType.SOLID_FOREGROUND);
 row.getCell(0).setCellStyle(style);

这将用红色填充单元格背景颜色。

于 2013-06-22T04:41:33.847 回答