Java-Word의 문자 간격 및 단락 간격 변경

6387 단어 javawordapi
단락 간격은 두 단락 사이의 공백 양이고 문자 간격은 두 문자 사이의 공백 양입니다. 일부 특정 문서의 요구 사항을 충족하기 위해 때때로 Word 문서에서 문자 간격과 단락 간격을 조정해야 할 수 있습니다. 이 기사에서는 Free Spire.Doc for Java를 사용하여 프로그래밍 방식으로 이 작업을 수행하는 방법을 공유합니다.

가져오기 종속성



방법 1: free library을 다운로드하고 압축을 풉니다. 그런 다음 Spire.Doc.jar 파일을 Java 애플리케이션에 종속성으로 추가합니다.
방법 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.doc.free</artifactId>
      <version>5.2.0</version>
   </dependency>
</dependencies>


샘플 코드



무료 Spire.Doc for Java는 Paragraph.getFormat().setBeforeSpacing() 및 Paragraph.getFormat().setAfterSpacing() 메서드를 제공하여 단락 앞과 뒤에 공백을 설정합니다. 문자 간격을 설정하려면 TextRange.getCharacterFormat().setCharacterSpacing() 메서드를 사용할 수 있습니다.

import com.spire.doc.*;
import com.spire.doc.documents.Paragraph;
import com.spire.doc.fields.TextRange;

import java.io.*;

public class setSpacing {
    public static void main(String[] args)throws IOException {
        //Load the sample document
        Document document= new Document("E:\\Files\\input2.docx");

        //Add a new paragraph and append the text
        Section section = document.getSections().get(0);
        Paragraph para= section.getParagraphs().get(1);

        //Set the spacing before and after paragraph
        para.getFormat().setBeforeAutoSpacing(false);
        para.getFormat().setBeforeSpacing(10);
        para.getFormat().setAfterAutoSpacing(false);
        para.getFormat().setAfterSpacing(10);

        //Set the character spacing
        for (DocumentObject object :(Iterable<DocumentObject>)para.getChildObjects())
        {
            TextRange textRange= (TextRange) object;
            textRange.getCharacterFormat().setCharacterSpacing(3f);
        }


        //Save the document to file
        document.saveToFile("Spacing.docx", FileFormat.Docx);

    }
}


좋은 웹페이지 즐겨찾기