Java를 사용하여 Excel에서 데이터 막대 추가
JAR 종속성 가져오기(2 방법)
1# free API을 다운로드하고 압축을 푼 다음 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>3.9.1</version>
</dependency>
</dependencies>
샘플 코드
Java용 무료 Spire.XLS는 Worksheet.getCellRange() 메서드를 제공하여 특정 셀 범위를 가져오고 ConditionalFormats를 사용하여 셀 범위에 새로운 조건부 서식을 추가할 수 있습니다. addCondition() 메소드. 선택한 셀 범위에 데이터 막대를 추가하려면 ConditionalFormatWrapper.setFormatType() 메서드를 사용하여 새로운 조건부 서식 유형을 DataBar로 설정하기만 하면 됩니다.
import com.spire.xls.*;
import com.spire.xls.core.*;
import java.awt.*;
public class applyDataBars {
public static void main(String[] args) {
//Create a Workbook instance
Workbook workbook = new Workbook();
//Load an Excel file
workbook.loadFromFile("C:\\Users\\Administrator\\Desktop\\test.xlsx");
//Get the first worksheet.
Worksheet sheet = workbook.getWorksheets().get(0);
//Get the specific cell range
CellRange range = sheet.getCellRange("B2:B13");
//Add the condotional format of data bar to the cell range
IConditionalFormat format = range.getConditionalFormats().addCondition();
format.setFormatType( ConditionalFormatType.DataBar);
//Set color for the data bar
format.getDataBar().setBarColor( Color.GREEN);
//Save to file
workbook.saveToFile("ApplyDataBars.xlsx", ExcelVersion.Version2013);
}
}
Reference
이 문제에 관하여(Java를 사용하여 Excel에서 데이터 막대 추가), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/codesharing/add-data-bars-in-excel-using-java-5b5l텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)