문제

I am trying to get font color of cell of a XLSX file. I am using the apache poi. I am able to get the cell color but not the font color. Any kind of suggestion will be appreciated.

thanks

도움이 되었습니까?

해결책

From an XSSFCellStyle you can get the XSSFFont. From that, you can get the XSSFColor. Finally, from the XSSFColor, you can get the colour information as ARGB Hex, RGB with Tint etc.

Your code would look something like:

XSSFCellStyle style = cell.getCellStyle();
XSSFFont font = style.getFont();
XSSFColor colour = font.getXSSFColour();
System.out.println("The colour is " + colour.getARGBHex());
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top