使用 Apache POI 更改行的样式

Change style of a row with Apache POI

我尝试更改一行的背景颜色,或使用以下代码以不同的颜色突出显示它:

FileInputStream fis = new FileInputStream(src);
HSSFWorkbook wb = new HSSFWorkbook(fis);
HSSFSheet sheet = wb.getSheetAt(0);
r = sheet.getRow(5);

CellStyle style = wb.createCellStyle();
style.setFillForegroundColor(IndexedColors.RED.getIndex());
style.setFillPattern(FillPatternType.SOLID_FOREGROUND);
r.setRowStyle(style);

FileOutputStream fileOut = new FileOutputStream(excelFileName);
wb.write(fileOut);
wb.close();
fileOut.flush();
fileOut.close();

我创建了一个样式,将其设置为一行,然后将其写到同一个文件中。当我执行代码时文件被修改,但背景颜色没有改变。

setRowStyle(CellStyle style) 没有像您预期的那样工作。查看 XSSFRow source code,您不会发现对行中单元格的迭代或类似内容。

/**
 * Applies a whole-row cell styling to the row.
 * If the value is null then the style information is removed,
 *  causing the cell to used the default workbook style.
 */
@Override
public void setRowStyle(CellStyle style) {
    if(style == null) {
       if(_row.isSetS()) {
          _row.unsetS();
          _row.unsetCustomFormat();
       }
    } else {
        StylesTable styleSource = getSheet().getWorkbook().getStylesSource();

        XSSFCellStyle xStyle = (XSSFCellStyle)style;
        xStyle.verifyBelongsToStylesSource(styleSource);
        long idx = styleSource.putStyle(xStyle);
        _row.setS(idx);
        _row.setCustomFormat(true);
    }
}

据我所知,这更像是设置默认行样式。但即使您以这种方式设置行样式,此后在该行中创建的单元格也不会获得这种样式。您很可能必须逐个单元格地进行样式设置。