如何使用apache pio 4.1.0设置单元格的背景色

时间:2019-09-29 10:59:53

标签: java apache-poi

我正在尝试使用setFillBackgroundColor方法设置背景色,但似乎必须将setFillPattern与它一起使用。但是,使用setFillPattern方法无法找到普通的FillPatternType。

cellStyle.setFillBackgroundColor(HSSFColor.GREY_25_PERCENT.index);
cellStyle.setFillPattern(HSSFCellStyle.SPARSE_DOTS);

我找不到普通的fillPatternType,如果我使用NO_FILL,则背景颜色不适用。如果不使用setFillPattern,我将看不到setFillBackgroundColor的效果。

请让我知道如何设置纯净的背景色,而没有任何点,砖,钻石或DIAG。

谢谢。

1 个答案:

答案 0 :(得分:2)

单元格内部使用图案填充。填充背景颜色是图案的后面颜色。填充前景颜色是图案的颜色。

要使用纯色填充单元格,您需要使用填充前景色和纯色图案。

请参见Fills and colors

...
cellStyle.setFillForegroundColor(IndexedColors.GREY_25_PERCENT.getIndex());
cellStyle.setFillPattern(FillPatternType.SOLID_FOREGROUND);
...

具有单元格填充和单元格内容的完整示例:

import java.io.FileOutputStream;

import org.apache.poi.ss.usermodel.*;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;

public class CreateExcelCellFillColor {

 public static void main(String[] args) throws Exception {
  Workbook workbook = new XSSFWorkbook();
  //Workbook workbook = new HSSFWorkbook();

  CellStyle cellStyle = workbook.createCellStyle();
  cellStyle.setAlignment(HorizontalAlignment.CENTER);
  cellStyle.setVerticalAlignment(VerticalAlignment.CENTER);

  cellStyle.setFillForegroundColor(IndexedColors.GREY_25_PERCENT.getIndex());
  cellStyle.setFillPattern(FillPatternType.SOLID_FOREGROUND);

  Sheet sheet = workbook.createSheet();
  Row row = sheet.createRow(0);
  Cell cell = row.createCell(0);
  cell.setCellValue("cell value");
  cell.setCellStyle(cellStyle);

  row.setHeightInPoints(50);
  sheet.setColumnWidth(0, 50 * 256);

  FileOutputStream out = null;
  if (workbook instanceof HSSFWorkbook) {
   out = new FileOutputStream("CreateExcelCellFillColor.xls");
  } else if (workbook instanceof XSSFWorkbook) {
   out = new FileOutputStream("CreateExcelCellFillColor.xlsx");
  }
  workbook.write(out);
  out.close();
  workbook.close();
 }
}

结果:

enter image description here