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);
}