gpt4 book ai didi

Java 从 Apache poi 获取 excel 单元格背景颜色

转载 作者:行者123 更新时间:2023-11-30 06:43:16 36 4
gpt4 key购买 nike

我正在尝试使用 Apache POI 在 .xlsx 文件中获取单元格颜色信息。

方法 cellStyle.getFillBackgroundColor() 返回短。如何将 short 转换为 java.awt.Color 或任何其他格式(XSSFColor)。

最终我想根据背景颜色存储单元格的值。

 Workbook workbook = WorkbookFactory.create(new FileInputStream (new File(SAMPLE_XLSX_FILE_PATH)));
Sheet sheet = workbook.getSheetAt(0);
DataFormatter dataFormatter = new DataFormatter();
sheet.forEach(row -> {
row.forEach(cell -> {
String cellValue = dataFormatter.formatCellValue(cell);
CellStyle cellStyle = cell.getCellStyle();
System.out.println(cellStyle.getFillBackgroundColor());
//Color userColor = cellStyle.getFillBackgroundColor(); //ERROR
});
System.out.println();
});

我使用的是 3.6 版,我认为它不支持 getFillBackgroundColorColor()

<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>3.6</version>
</dependency>

最佳答案

使用 .xlsx 电子表格,您可以调用 the getFillBackgroundColorColor (2 "Color" words)方法。它返回一个 org.apache.poi.ss.usermodel.Color(不是一个非常有用的接口(interface)),由 XSSFColor 实现。然后您可以将其转换为 XSSFColor

XSSFColor = (XSSFColor) cellStyle.getFillBackgroundColorColor();

或者,对于 .xlxs 电子表格,您可以将 CellStyle 转换为 XSSFCellStyle,并将 XSSFCellStylegetFillBackgroundColorColor 方法直接返回一个 XSSFColor。它还具有 getFillBackgroundXSSFColor它做同样的事情。

Get the background fill color.

Note - many cells are actually filled with a foreground fill, not a background fill - see getFillForegroundColor()

请注意,实心填充是作为前景色实现的,因此前景色可能正是您真正想要的。前景色有互补的方法,例如getFillForegroundColorColor

关于Java 从 Apache poi 获取 excel 单元格背景颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52263775/

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