如何通过Apache poi <= 3.17版本在Excel工作表中添加背景色

时间:2019-01-30 10:45:15

标签: apache apache-poi

我有一张excel工作表,我在其中合并各列,使其成为一行上的一列,并尝试添加背景色,但它不起作用。

CellStyle cellStyle = workbook.createCellStyle();
Font font = workbook.createFont();
font.setFontHeightInPoints((short)12);
font.setBoldweight(Font.BOLDWEIGHT_BOLD);
cellStyle.setBorderTop((short) 2); // single line border
cellStyle.setBorderBottom((short) 2); // single line border
cellStyle.setFont(font);
cellStyle.setFillBackgroundColor(IndexedColors.LIGHT_CORNFLOWER_BLUE.getIndex());

0 个答案:

没有答案