我们如何得到background color
一个XSSFCell
. 我尝试使用XSSFCellStyle
但没有运气。
FileInputStream fis = new FileInputStream(fileName);
XSSFWorkbook book = new XSSFWorkbook(fis);
XSSFSheet sheet = book.getSheetAt(0);
XSSFRow row = sheet.getRow(0);
System.out.println(row.getCell(0).getCellStyle().getFillForegroundColor());
使用这些步骤,我无法获得Short
类型的背景颜色表示。