我正在尝试将一些自定义(从十六进制或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
我在相关问题的答案中尝试了许多其他方法,但没有一个解决了我的问题。 请帮帮我。
答案 0 :(得分:4)
这是由Package org.apache.poi.ss.util的不完整引起的。
PropertyTemplate
以及CellUtil
和RegionUtil
仅基于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
设置边框时需要设置颜色,那么答案是,这是必要的,因为颜色和边框都在同一个{{1 }}。这就是为什么在将边框设置添加到CellStyle
时,必须保持颜色设置并最终设置为新的。
总而言之,没有办法摆脱这种困境。如果您需要使用CellStyle
,则无法在同一时间使用org.apache.poi.ss.util
。唯一的希望是setFillForegroundColor(XSSFColor color)
将在setFillForegroundColor(Color color)
的更高版本中添加到org.apache.poi.ss.usermodel.CellStyle
。