I am developing a Java Application
.
In my Application, I used Excel
which is created by manually (WPS spread sheet tool in Ubuntu Machine) and gave style like Color, Bold and Italic.
Using POI, I can find all the styles but could not find the Color
.
Sample Code:-
XSSFCell cell = row.getCell(j); // j is loop iterate value
XSSFColor color = cell.getCellStyle().getFillBackgroundColorColor();
From the above code, I got only Null
values from the all Cell
and I was check with this link enter link description here but no useful.
Please help me to solve this issues.