JExcel API を使用して Excel セルにカラー フォーマットを追加する方法。既存の Excel ファイルがあり、目的のセルにカラー フォーマットを追加する方法が必要です。
質問する
417 次
1 に答える
1
の私の答えを参照してくださいmodifying the excel cells using JExcel API
。その答えはあなただけに提供されています:)
Excelセルにカラーフォーマットを追加するには、以下のコードを試してください。
// Create cell font and format
private static WritableCellFormat getCellFormat(Colour colour, Pattern pattern) throws WriteException {
WritableFont cellFont = new WritableFont(WritableFont.TIMES, 16);
WritableCellFormat cellFormat = new WritableCellFormat(cellFont);
cellFormat.setBackground(colour, pattern);
return cellFormat;
}
// Create the label, specifying content and format
Label label = new Label(1, 2, "ABC", getCellFormat(Colour.GREEN, Pattern.GRAY_25));
Label label2 = new Label(1, 4, "PQR", getCellFormat(Colour.BLUE, Pattern.GRAY_50));
Label label3 = new Label(1, 6, "XYZ", getCellFormat(Colour.ORANGE, Pattern.GRAY_75));
sheet.addCell(label);
sheet.addCell(label2);
sheet.addCell(label3);
取得sheet
は上記のリンクですでに提供されています。
于 2013-01-12T18:45:05.227 に答える