Lus*_*usi 0 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();
}
}
}
Run Code Online (Sandbox Code Playgroud)
您正在尝试使用索引颜色,但是使用您的 HSSF 代码找到了索引颜色,但没有找到 XSSF 部分。这里Color.getIndex()将返回零,这是黑色的。
有一种isIndexed()颜色方法,您需要检查颜色是否为索引颜色,然后才有意义getIndex()在 POI-Color-object 上使用。
您可以不使用索引颜色,而是使用以下全色值使其适用于 XSSF:
((XSSFCellStyle)cellStyle).setFillForegroundColor(color);
Run Code Online (Sandbox Code Playgroud)
通过这种方式设置实际颜色,生成的工作簿将具有正确的背景。