shouldn't this be working? fac is the uncolored workbook and facsheet is its uncolored sheet
工作表是彩色工作表,我试图从一个工作簿中获取颜色并将它们设置到另一个工作簿中
for(int i=2;rowIterator.hasNext();i++){
CellStyle style=fac.createCellStyle();
style.setFillForegroundColor(sheet.getRow(i).getRowStyle().getFillForegroundColor());
style.setFillBackgroundColor(sheet.getRow(i).getRowStyle().getFillBackgroundColor());
facsheet.getRow(i).setRowStyle(style);
}