在Apache POI中将背景自定义颜色设置为不适用于XSSF

时间:2016-01-18 18:53:32

标签: java excel apache-poi

我编写的代码应该创建一个Excel文件(xlsx或xls)并为单元格设置自定义背景颜色。创建xls文件时,背景颜色正常,但在xlsx的情况下,背景颜色未设置为正确的颜色。

我的代码有什么问题?

public class PoiWriteExcelFile {
static Workbook workbook; 
static Sheet worksheet;

public static void main(String[] args) {
    try {
        String type = "xlsx"; //xls
        FileOutputStream fileOut = new FileOutputStream("D:\\poi-test." + type);            
        switch (type) {
        case "xls":
            workbook = new HSSFWorkbook();              
            break;              
        case "xlsx":
            workbook = new XSSFWorkbook();              
            break;          
        }

        CellStyle cellStyle = workbook.createCellStyle();
        switch (type) {
        case "xls":
            HSSFPalette palette = ((HSSFWorkbook) workbook).getCustomPalette();
             palette.setColorAtIndex(HSSFColor.LAVENDER.index, (byte)128, (byte)0, (byte)128);
             HSSFColor hssfcolor = palette.getColor(HSSFColor.LAVENDER.index);
             cellStyle.setFillForegroundColor(hssfcolor.getIndex());
            break;              
        case "xlsx":
            XSSFColor color = new XSSFColor(new java.awt.Color(128, 0, 128));
            cellStyle.setFillForegroundColor(color.getIndex());
            break;          
        }

        worksheet = workbook.createSheet("POI Worksheet");
        Row row1 = worksheet.createRow((short) 0);
        Cell cellA1 = row1.createCell((short) 0);
        cellA1.setCellValue("Hello");           
        cellStyle.setFillPattern(CellStyle.SOLID_FOREGROUND);           
        cellA1.setCellStyle(cellStyle);

        workbook.write(fileOut);
        fileOut.flush();
        fileOut.close();
    } catch (FileNotFoundException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }

}
}

1 个答案:

答案 0 :(得分:3)

您正在尝试使用索引颜色,但是使用HSSF的代码可以找到索引颜色,但不能找到XSSF部分。 Color.getIndex()将返回零,即黑色。

在颜色上有一个方法isIndexed(),您需要检查颜色是否为索引颜色,然后才能在POI-Color-object上使用getIndex()

您可以通过不使用索引颜色使其适用于XSSF,但使用以下内容可以使其成为全色值:

((XSSFCellStyle)cellStyle).setFillForegroundColor(color);

这样您可以设置实际颜色,生成的工作簿将具有正确的背景。