下付き文字と上付き文字は、どちらも文字列の中で他の文字の後に表示される記号です。上付き文字は通常の文字の基線より上に表示され、下付き文字は文字の基線より下に表示されます。Microsoft Word で上付き文字や下付き文字を挿入する必要がある場合があります。例えば、科学的な数式を含む学術的な文書を作成する場合などです。この記事では、Spire.Doc for Java ライブラリを使用して、Java で Word 文書に上付き文字と下付き文字を挿入する方法について説明します。 Spire.Doc for Java をインストールします まず、Spire. Doc for Java を Java プロジェクトに追加する必要があります。JAR ファイルは、このリンクからダウンロードできます。Maven を使用する場合は、次のコードをプロジェクトの pom.xml ファイルに追加する必要があります。 <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.doc</artifactId> <version>10.12.4</version> </dependency> </dependencies> Word 文書に上付き文字と下付き文字を挿入する Spire.Doc for Java では、テキストに上付き文字や下付き文字を適用するための TextRange.getCharacterFormat().setSubSuperScript() メソッドを用意しています。 上付き文字と下付き文字の挿入の詳細な手順は以下の通りです。 Document クラスのインスタンスを作成します。 Document.loadFromFile() メソッドを使用して Word 文書を読み込みます。 Document.getSections().get(sectionIndex) メソッドを使用して、特定のセクションを取得します。 Section.addParagraph() メソッドを使用して、セクションに段落を追加します。 Paragraph.appendText() メソッドを使用して、段落に通常のテキストを追加します。 Paragraph.appendText() メソッドを使用して、上付き文字または下付き文字を適用するテキストを段落に追加します。 TextRange.getCharacterFormat().setSubSuperScript() メソッドを使用して、上付き文字または下付き文字の書式を適用します。 Document.saveToFile() メソッドを使用して、結果のドキュメントを保存します。 Java import com.spire.doc.Document; import com.spire.doc.FileFormat; import com.spire.doc.Section; import com.spire.doc.documents.BreakType; import com.spire.doc.documents.Paragraph; import com.spire.doc.documents.SubSuperScript; import com.spire.doc.fields.TextRange; public class insertSuperscriptAndSubscript { public static void main(String[] args){ //Documentクラスのインスタンスを作成する Document document = new Document(); //Word文書の読み込み document.loadFromFile("サンプル.docx"); //1つ目のセクションを取得する Section section = document.getSections().get(0); //セクションに段落を追加する Paragraph paragraph = section.addParagraph(); //段落に通常のテキストを追加する paragraph.appendText("E = mc"); //上付き文字を適用するテキストを段落に追加する TextRange superscriptText = paragraph.appendText("2"); //テキストに上付き文字書式を適用する superscriptText.getCharacterFormat().setSubSuperScript(SubSuperScript.Super_Script); //新しい行を開始する paragraph.appendBreak(BreakType.Line_Break); //段落に通常のテキストを追加する paragraph.appendText("H"); //下付き文字を適用するテキストを段落に追加する TextRange subscriptText = paragraph.appendText("2"); //テキストに下付き文字書式を適用する subscriptText.getCharacterFormat().setSubSuperScript(SubSuperScript.Sub_Script); //段落に通常のテキストを追加する paragraph.appendText("O"); //段落内のテキストの文字サイズを設定する for(Object item : paragraph.getItems()) { if (item instanceof TextRange) { TextRange textRange = (TextRange)item ; textRange.getCharacterFormat().setFontSize(36f); } } //結果文書を保存する document.saveToFile("上付き文字と下付き文字.docx", FileFormat.Docx_2013); } } 一時ライセンスを申請する 結果ドキュメントから評価メッセージを削除したい場合、または機能制限を取り除く場合は、についてこのメールアドレスはスパムボットから保護されています。閲覧するにはJavaScriptを有効にする必要があります。 にお問い合わせ、30 日間有効な一時ライセンスを取得してください。