Java에서 Excel에 신호등 아이콘 추가
Jar 종속성 가져오기(2 방법)
1# free library을 다운로드하고 압축을 푼 다음 Spire.Xls.jar 파일을 종속 항목으로 프로젝트에 추가합니다.
2# pom.xml에 다음 구성을 추가하여 maven 프로젝트에 jar 종속성을 직접 추가합니다.
<repositories>
<repository>
<id>com.e-iceblue</id>
<name>e-iceblue</name>
<url>http://repo.e iceblue.com/nexus/content/groups/public/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>e-iceblue</groupId>
<artifactId>spire.xls.free</artifactId>
<version>5.1.0</version>
</dependency>
</dependencies>
샘플 코드
import com.spire.xls.*;
import com.spire.xls.core.IConditionalFormat;
import com.spire.xls.core.spreadsheet.collections.XlsConditionalFormats;
import java.awt.*;
public class setTrafficLightsIcons {
public static void main(String[] args) {
//Create a workbook
Workbook workbook = new Workbook();
//Add a worksheet
Worksheet sheet = workbook.getWorksheets().get(0);
//Add data to cells
sheet.getCellRange("A1").setText("Project Progress");
sheet.getCellRange("A2").setNumberValue(0.95);
sheet.getCellRange("A3").setNumberValue(0.5);
sheet.getCellRange("A4").setNumberValue(0.1);
sheet.getCellRange("A5").setNumberValue(0.9);
sheet.getCellRange("A6").setNumberValue(0.7);
sheet.getCellRange("A7").setNumberValue(0.6);
//set number format for the cell range
sheet.getCellRange("A2:A7").setNumberFormat("0%");
//Set row height and column width for the cell range
sheet.getAllocatedRange().setRowHeight(20);
sheet.getAllocatedRange().setColumnWidth(25);
//Add a conditional formatting
XlsConditionalFormats conditional = sheet.getConditionalFormats().add();
conditional.addRange(sheet.getAllocatedRange());
IConditionalFormat format1 = conditional.addCondition();
//Set the conditional format type, formula, comparison operator type and color
format1.setFormatType(ConditionalFormatType.CellValue);
format1.setFirstFormula("300");
format1.setOperator(ComparisonOperatorType.Less);
format1.setFontColor(Color.black);
format1.setBackColor(Color.lightGray);
//Add a conditional formatting of traffic lights icon to the cell range
conditional.addRange(sheet.getAllocatedRange());
IConditionalFormat format = conditional.addCondition();
format.setFormatType(ConditionalFormatType.IconSet);
format.getIconSet().setIconSetType(IconSetType.ThreeTrafficLights1);
//Save to file
workbook.saveToFile( "output/setTrafficLightsIcons.xlsx", ExcelVersion.Version2013);
}
}
Reference
이 문제에 관하여(Java에서 Excel에 신호등 아이콘 추가), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/carlwils/add-traffic-lights-icons-to-excel-in-java-p5m텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)