我正在使用java workbook xls,但无法设置颜色。我正在使用以下代码。

CellStyle cellStyle = sheet.getWorkbook().createCellStyle();
cellStyle.setFillBackgroundColor(HSSFColor.DARK_RED.index);

Cell celli = row0.createCell((short) i);
celli.setCellValue(list.get(i).toString());
celli.setCellStyle(cellStyle);


我正在使用单元格样式,但未设置颜色。

最佳答案

你应该用

cellStyle.setFillForegroundColor(HSSFColor.DARK_RED.index);
cellStyle.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);


代替

cellStyle.setFillBackgroundColor(HSSFColor.DARK_RED.index);

关于java - 颜色未设置为工作簿,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35179940/

10-10 09:57