gpt4 book ai didi

java - Apache 兴趣点。 style.setBackgroundColor 不起作用

转载 作者:行者123 更新时间:2023-12-01 07:47:38 25 4
gpt4 key购买 nike

Workbook workbook = new HSSFWorkbook();
Sheet worksheet = workbook.createSheet("test sheet");
Row row1 = worksheet.createRow(0);
Cell cell0 = row1.createCell(0);
CellStyle testStyle = workbook.createCellStyle();
testStyle.setFillBackgroundColor(IndexedColors.RED.getIndex());
cell0.setCellStyle(testStyle);

我正在尝试将单元格的背景颜色更改为红色。但实际上单元格的背景颜色并没有改变。还是白色的

最佳答案

你错过了这一行:

testStyle.setFillPattern(FillPatternType.SOLID_FOREGROUND);

这将告诉 apache-poi 颜色的可见度。

关于java - Apache 兴趣点。 style.setBackgroundColor 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48460047/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com