Java-Word의 문자 간격 및 단락 간격 변경
가져오기 종속성
방법 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);
}
}
Reference
이 문제에 관하여(Java-Word의 문자 간격 및 단락 간격 변경), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/carlwils/java-change-character-spacing-and-paragraph-spacing-in-word-3f3a텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)