1. 程式人生 > >使用poi對excel條件格式設定字型顏色使用自定義的顏色

使用poi對excel條件格式設定字型顏色使用自定義的顏色

在poi中設定條件格式也是使用如下程式碼

XSSFSheetConditionalFormatting scf = target.getSheetConditionalFormatting(); //獲得條件格式物件
		//紅色格式
		XSSFConditionalFormattingRule cf_R_rule  = scf.createConditionalFormattingRule(ComparisonOperator.LT, "0", null);//設定條件格式規則
		XSSFFontFormatting cf_R = cf_R_rule.createFontFormatting();//建立字型樣式
		cf_R.setFontColorIndex(IndexedColors.RED.index);
		//條件格式應用的單元格範圍  
		CellRangeAddress[] regions = {new CellRangeAddress(4, 26, 4, 4),
				new CellRangeAddress(4, 26, 12, 12),
				new CellRangeAddress(4, 26, 23, 23),
				new CellRangeAddress(37, 54, 4, 4),
				new CellRangeAddress(37, 54, 12, 12),
				new CellRangeAddress(37, 54, 23, 23)};
		//XSSFConditionalFormattingRule[] cfRules = {cf_R_rule};  
		scf.addConditionalFormatting(regions, cf_R_rule);

現在需求使用自定義的顏色來設定字型是可以採用
XSSFConditionalFormattingRule cf_W_rule_1  = scf.createConditionalFormattingRule(ComparisonOperator.EQUAL, "0", null);//設定條件格式規則
		XSSFFontFormatting cf_W_1 = cf_W_rule_1.createFontFormatting();//建立字型樣式
		XSSFColor xssfColor = new XSSFColor(new java.awt.Color(204,255, 255));
		cf_W_1.setFontColorIndex(xssfColor.getIndex());
		cf_W_1.setFontColor(xssfColor);
這裡的重點是先設定setFontColorIndex在設定setFontColor,原因是直接使用setFontColor會報陣列越界異常,他原始碼裡面沒有初始化陣列,而setColorIndex會初始陣列
cf_W_1.setFontColorIndex(xssfColor.getIndex());
		cf_W_1.setFontColor(xssfColor);