Java/Excel에 아래 첨자 및 위 첨자 삽입
8049 단어 programmingexceljavaapi
가져오기 종속성(2가지 방법)
1# free API을 다운로드하고 압축을 푼 다음 Spire.Xls.jar 파일을 종속 항목으로 프로젝트에 추가합니다.
2# pom.xml에 다음 구성을 추가하여 maven 프로젝트에 jar 종속성을 직접 추가합니다.
<repositories>
<repository>
<id>com.e-iceblue</id>
<name>e-iceblue</name>
<url>https://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>
샘플 코드
무료 Spire.XLS for Java는 ExcelFont.isSubscript() 및 ExcelFont.isSuperscript() 메서드를 제공하여 글꼴을 아래 첨자 및 위 첨자로 서식 지정합니다. 그런 다음 CellRange.getRichText().setFont(int startPos, int endPos, ExcelFont font) 메서드를 사용하여 지정된 문자 범위에 효과를 적용할 수 있습니다. 전체 샘플 코드는 아래와 같습니다.
import com.spire.xls.*;
import java.awt.*;
public class InsertSubscriptSuperscript {
public static void main(String[] args) {
//Create a Workbook instance
Workbook workbook = new Workbook();
//Get the first worksheet
Worksheet sheet = workbook.getWorksheets().get(0);
//Insert text to B2 and D2
sheet.getCellRange("B2").setText("An example of Subscript:");
sheet.getCellRange("D2").setText("An example of Superscript:");
//Insert text to B3 and apply subscript effect
CellRange range = sheet.getCellRange("B3");
range.getRichText().setText("R100-0.06");
ExcelFont font = workbook.createFont();
font.isSubscript(true);
font.setColor(Color.red);
range.getRichText().setFont(4, 8, font);
//Insert text to D3 and apply superscript effect
range = sheet.getCellRange("D3");
range.getRichText().setText("a2 + b2 = c2");
font = workbook.createFont();
font.isSuperscript(true);
range.getRichText().setFont(1, 1, font);
range.getRichText().setFont(6, 6, font);
range.getRichText().setFont(11, 11, font);
//Auto-fit column width
sheet.getAllocatedRange().autoFitColumns();
//Save the document
workbook.saveToFile("SubSuperScript.xlsx", ExcelVersion.Version2016);
}
}
Reference
이 문제에 관하여(Java/Excel에 아래 첨자 및 위 첨자 삽입), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/carlwils/java-insert-subscript-and-superscript-in-excel-4kl7텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)