我使用Apache POI將數據導出到Excel表單中。它工作正常。問題是我需要應用黃色背景顏色的Excel表格中的幾行,同時生成Excel表格。請告訴我如何在產生Excel的行表格時應用背景顏色。如何使用Apache POI爲Excel表中的行應用背景顏色?
感謝, 雷迪
我使用Apache POI將數據導出到Excel表單中。它工作正常。問題是我需要應用黃色背景顏色的Excel表格中的幾行,同時生成Excel表格。請告訴我如何在產生Excel的行表格時應用背景顏色。如何使用Apache POI爲Excel表中的行應用背景顏色?
感謝, 雷迪
// Aqua background
CellStyle style = wb.createCellStyle();
style.setFillBackgroundColor(IndexedColors.AQUA.getIndex());
style.setFillPattern(CellStyle.BIG_SPOTS);
row.setRowStyle(style);
可能重複:http://stackoverflow.com/q/1499739/701884 – Wivani