如何将单元格的背景颜色设置为任何RGB值?

时间:2017-09-06 00:52:02

标签: java excel apache-poi

我尝试将单元格背景颜色设置为RGB值,如此

    XSSFCellStyle  instructionStyle = wb.createCellStyle();
    instructionStyle.setWrapText(true);
    XSSFColor myColor = new XSSFColor(new java.awt.Color(0, 73,144));
    instructionStyle.setFillForegroundColor(myColor);
    instructionStyle.setAlignment(HorizontalAlignment.CENTER);

甚至除了水平对齐到中心之外,对于单元格的外观没有任何其他影响。有人告诉我这段代码有什么问题?谢谢

1 个答案:

答案 0 :(得分:1)

您可以尝试添加以下内容吗?

instructionStyle.setFillPattern(FillPatternType.SOLID_FOREGROUND);