Java/Excel에 아래 첨자 및 위 첨자 삽입

위 첨자 및 아래 첨자는 기준선 위 또는 아래에 입력되는 소문자 또는 숫자입니다. 일반적으로 각주, 참조, 수학 및 화학 기호에 사용됩니다. 이 기사에서는 Java용 Free Spire.XLS를 사용하여 프로그래밍 방식으로 Excel 문서에 아래 첨자와 위 첨자를 삽입하는 방법을 공유합니다.

가져오기 종속성(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);
    }
}


좋은 웹페이지 즐겨찾기