gpt4 book ai didi

java - 无法在 XSSFCell Apache POI 中设置自定义颜色

转载 作者:行者123 更新时间:2023-11-29 06:51:55 25 4
gpt4 key购买 nike

我正在尝试将一些自定义(从十六进制代码或 rgb 值)颜色设置为 xssfcell。但是即使我给出了其他颜色,单元格的颜色也会变成黑色。我尝试通过以下方式进行此操作:

File xlSheet = new File("C:\\Users\\IBM_ADMIN\\Downloads\\Excel Test\\Something3.xlsx");
System.out.println(xlSheet.createNewFile());
FileOutputStream fileOutISPR = new FileOutputStream("C:\\Users\\IBM_ADMIN\\Downloads\\Excel Test\\Something3.xlsx");
XSSFWorkbook isprWorkbook = new XSSFWorkbook();
XSSFSheet sheet = isprWorkbook.createSheet("TEST");
XSSFRow row = sheet.createRow(0);
XSSFCellStyle cellStyle = isprWorkbook.createCellStyle();
byte[] rgb = new byte[3];
rgb[0] = (byte) 24; // red
rgb[1] = (byte) 22; // green
rgb[2] = (byte) 219; // blue
XSSFColor myColor = new XSSFColor(rbg);
cellStyle.setFillForegroundColor(myColor);
cellStyle.setFillPattern(CellStyle.SOLID_FOREGROUND);
cellStyle.setAlignment(HorizontalAlignment.CENTER);
XSSFCell cell = row.createCell(0);
cell.setCellValue("Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has");
cell.setCellStyle(cellStyle);
CellRangeAddress rangeAddress = new CellRangeAddress(0, 0, 0, 2);
sheet.addMergedRegion(rangeAddress);
int width = ((int)(90 * 0.73)) * 256;
sheet.setColumnWidth(cell.getColumnIndex(), width);
//sheet.autoSizeColumn(cell.getColumnIndex());
RegionUtil.setBorderBottom(XSSFCellStyle.BORDER_MEDIUM, rangeAddress, sheet, isprWorkbook);
RegionUtil.setBottomBorderColor(IndexedColors.RED.getIndex(), rangeAddress, sheet, isprWorkbook);

XSSFCell cell2 = row.createCell(11);
cell2.setCellValue("222222222222222");
isprWorkbook.write(fileOutISPR);

//程序结束

   XSSFCellStyle cellStyle = isprWorkbook.createCellStyle();
byte[] rgb = new byte[3];
rgb[0] = (byte) 24; // red
rgb[1] = (byte) 22; // green
rgb[2] = (byte) 219; // blue
XSSFColor myColor = new XSSFColor(rgb);
cellStyle.setFillForegroundColor(myColor);//1st method
//cellStyle.setFillForegroundColor(new XSSFColor(new java.awt.Color(128, 0, 128)));//2nd method
//XSSFColor myColor = new XSSFColor(Color.decode("0XFFFFFF"));
cellStyle.setFillForegroundColor(myColor);//3rd Method

我尝试了相关问题的答案中提到的许多其他方法,但都没有解决我的问题。请帮帮我。

最佳答案

这是由于Package org.apache.poi.ss.util的不完整造成的.

PropertyTemplate 以及 CellUtilRegionUtil 仅基于 ss.usermodel 级别而不是xssf.usermodel 级别。但是org.apache.poi.ss.usermodel.CellStyle直到现在还不知道关于 setFillForegroundColor(Color color) 的事情。它只知道 setFillForegroundColor(short bg)。所以 ss.usermodel 级别直到现在都无法将 Color 设置为填充前景色。只有 short(颜色索引)是可能的。

如果谈到为什么在使用 org.apache.poi.ss.util 只设置边框时设置颜色是必要的,那么答案是,这是必要的,因为两者,颜色和边框,在同一个 CellStyle 中。这就是为什么在将边框设置添加到 CellStyle 时,颜色设置必须保持不变并最终设置为新的。

所以总而言之,没有办法摆脱这种困境。如果您需要使用 org.apache.poi.ss.util,则不能同时使用 setFillForegroundColor(XSSFColor color)。唯一的希望是setFillForegroundColor(Color color)在以后的apache poi版本中加入org.apache.poi.ss.usermodel.CellStyle >.

关于java - 无法在 XSSFCell Apache POI 中设置自定义颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45126788/

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