Java 設定Excel條件格式(高亮條件值、應用單元格值/公式/資料條等型別)

iceblue發表於2021-01-15

概述

在Excel中,應用條件格式功能可以在很大程度上改進表格的設計和可讀性,使用者可以指定單個或者多個單元格區域應用一種或者多種條件格式。本篇文章,將通過Java程式示例介紹條件格式的設定方法,設定條件格式時,因不同設定需要,本文分別從以下示例要點來介紹:

示例1

1. 應用條件格式用於高亮重複、唯一數值

2. 應用條件格式用於高亮峰值(最高值、最低值)

3. 應用條件格式用於高亮低於或高於平均值的數值

示例2

1. 應用單元格值型別的條件格式

2. 應用公式型別的條件格式

3. 應用資料條型別的條件格式

示例3

1. 刪除條件格式

 

程式環境

  • Jdk 1.8.0(高於或等於1.6.0版本即可)
  • Free Spire.XLS for Java (免費版)

Jar獲取及匯入:官網下載jar包,並解壓將lib資料夾下的jar匯入Java程式(或者通過maven下載匯入到maven專案程式)。如下匯入效果:

 

 

程式程式碼

Java示例1——應用條件格式高亮重複值、唯一值、峰值、高於或低於平均值

import com.spire.xls.*;
import com.spire.xls.core.IConditionalFormat;
import com.spire.xls.core.spreadsheet.collections.XlsConditionalFormats;
import com.spire.xls.core.spreadsheet.conditionalformatting.TimePeriodType;

import java.awt.*;

public class AddConditionalFormat {
    public static void main(String[] args) {
        //建立例項,載入測試文件
        Workbook wb = new Workbook();
        wb.loadFromFile("test.xlsx");

        //獲取第一個工作表
        Worksheet sheet = wb.getWorksheets().get(0);

        //新增條件格式1並指定資料範圍
        XlsConditionalFormats format1 = sheet.getConditionalFormats().add();
        format1.addRange(sheet.getCellRange("A2:A12"));
        //高亮低於平均數值的單元格
        IConditionalFormat cf1 = format1.addAverageCondition(AverageType.Below);
        cf1.setBackColor(new Color(230,230,250));
        //高亮高於平均數值的單元格
        IConditionalFormat cf2 = format1.addAverageCondition(AverageType.Above);
        cf2.setBackColor(new Color(224,255,255));

        //新增條件格式2並指定資料範圍
        XlsConditionalFormats format2 = sheet.getConditionalFormats().add();
        format2.addRange(sheet.getCellRange("B2:B12"));
        //高亮最高值
        IConditionalFormat cf3 = format2.addTopBottomCondition(TopBottomType.Top, 1);
        cf3.setBackColor(new Color(144,238,144));
        //高亮最低值單元格
        IConditionalFormat cf4 = format2.addTopBottomCondition(TopBottomType.Bottom, 1);
        cf4.setBackColor(new Color(221,160,221));

        //新增條件格式3並指定資料範圍
        XlsConditionalFormats format3 = sheet.getConditionalFormats().add();
        format3.addRange(sheet.getCellRange("C2:C12"));
        //高亮唯一值的單元格
        IConditionalFormat cf5 = format3.addDuplicateValuesCondition();
        cf5.setFormatType(ConditionalFormatType.UniqueValues);
        cf5.setBackColor(new Color(0,255,255));

        //新增條件格式4並指定資料範圍
        XlsConditionalFormats format4 = sheet.getConditionalFormats().add();
        format4.addRange(sheet.getCellRange("D2:D12"));
        //高亮重複數值的單元格
        IConditionalFormat cf6 = format4.addDuplicateValuesCondition();
        cf6.setFormatType(ConditionalFormatType.DuplicateValues);
        cf6.setBackColor(new Color(255,228,196));

        //新增條件格式5並指定資料範圍
        XlsConditionalFormats format5 = sheet.getConditionalFormats().add();
        format5.addRange(sheet.getCellRange("E2:E12"));
        //高亮本週日期的單元格
        IConditionalFormat cf7 = format5.addTimePeriodCondition(TimePeriodType.ThisWeek);
        cf7.setBackColor(new Color(255,165,0));

        //儲存文件
        wb.saveToFile("AddConditionalFormat.xlsx", ExcelVersion.Version2013);
        wb.dispose();
    }
}

條件格式應用效果:

 

Java示例2——應用單元格值、公式及資料條型別的條件格式

import com.spire.xls.*;

import java.awt.*;

public class AddConditionalFormat {
    public static void main(String[] args) {
        //建立例項,載入測試文件
        Workbook wb = new Workbook();
        wb.loadFromFile("sample.xlsx");

        //獲取第一個工作表
        Worksheet sheet = wb.getWorksheets().get(0);

        //獲取應用條件格式的資料範圍
        CellRange range = sheet.getCellRange("A2:H27");

        //新增條件格式1
        ConditionalFormatWrapper format1 = range.getConditionalFormats().addCondition();
        //條件格式型別1基於單元格值
        format1.setFormatType(ConditionalFormatType.CellValue);
        //將數值在60到90之間的單元格進行字型加粗,並設定字型顏色為橙色
        format1.setFirstFormula("90");
        format1.setSecondFormula("100");
        format1.setOperator(ComparisonOperatorType.Between);
        format1.setFontColor(new Color(30,144,255));
        //format1.setBackColor(Color.orange);

        //新增條件格式2
        ConditionalFormatWrapper format2 = range.getConditionalFormats().addCondition();
        format2.setFormatType(ConditionalFormatType.CellValue);
        format2.setFirstFormula("60");
        format2.setOperator(ComparisonOperatorType.Less);
        format2.setFontColor(Color.red);
        //format2.setBackColor(Color.red);
        format2.isBold();
        //新增邊框格式(邊框顏色、邊框型別)到條件格式2
        format2.setLeftBorderColor(Color.red);
        format2.setRightBorderColor(new Color(0,0,139));
        format2.setTopBorderColor(new Color(123,104,238));
        format2.setBottomBorderColor(new Color(50,205,50));
        format2.setLeftBorderStyle(LineStyleType.Medium);
        format2.setRightBorderStyle(LineStyleType.Thick);
        format2.setTopBorderStyle(LineStyleType.Double);
        format2.setBottomBorderStyle(LineStyleType.Double);

        //條件格式3的型別為公式
        ConditionalFormatWrapper format3 = range.getConditionalFormats().addCondition();
        format3.setFormatType(ConditionalFormatType.Formula);

        //自定義公式將低於60的單元格所在的行填充背景色
        format3.setFirstFormula("=OR($C2<60,$D2<60,$E2<60,$F2<60,$G2<60,$H2<60)");
        format3.setBackColor(Color.lightGray);


        //獲取第二個工作表
        Worksheet sheet2 = wb.getWorksheets().get(1);

        //獲取應用條件格式的資料範圍
        CellRange range2 = sheet2.getCellRange("B2:D7");

        //新增條件型別4為data bars
        ConditionalFormatWrapper format4 = range2.getConditionalFormats().addCondition();
        format4.setFormatType(ConditionalFormatType.DataBar);
        format4.getDataBar().setBarColor(new Color(152,251,152));

        //儲存文件
        wb.saveToFile("AddConditionalFormat2.xlsx", ExcelVersion.Version2013);
        wb.dispose();
    }
}

條件格式應用效果:

 

Java示例3——刪除條件格式

(這裡測試文件以示例1中生成的文件為例)

import com.spire.xls.*;

public class RemoveConditionalFormat {
    public static void main(String[] args) {
        Workbook wb = new Workbook();
        wb.loadFromFile("AddConditionalFormat.xlsx");

        //獲取第一個工作表
        Worksheet sheet = wb.getWorksheets().get(0);

        //刪除指定單元格範圍中的條件格式
        sheet.getCellRange("A5:H5").getConditionalFormats().removeAt(3);

        //儲存並開啟文件
        wb.saveToFile("RemoveConditionalFormat.xlsx", ExcelVersion.Version2010);
        wb.dispose();
    }
}

條件格式刪除效果:

 

相關文章