Java에서 Word의 단락을 들여쓰는 방법
Java용 Spire.Doc 설치
먼저 Spire.Doc.jar 파일을 Java 프로그램의 종속성으로 추가해야 합니다. JAR 파일을 다운로드할 수 있습니다from this link. Maven을 사용하는 경우 프로젝트의 pom.xml 파일에 다음 코드를 추가하여 애플리케이션에서 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</artifactId>
<version>4.12.7</version>
</dependency>
</dependencies>
코드 사용
다음은 Word에서 단락 들여쓰기를 설정하는 단계입니다.
import com.spire.doc.Document;
import com.spire.doc.FileFormat;
import com.spire.doc.Section;
import com.spire.doc.documents.Paragraph;
import com.spire.doc.formatting.ParagraphFormat;
public class Test {
public static void main(String[] args) throws Exception {
//Create a Document instance
Document document= new Document();
//Load a Word document
document.loadFromFile("Sample.docx");
//Get the first section
Section section = document.getSections().get(0);
//Get the first paragraph and set left indent, right indent
Paragraph para = section.getParagraphs().get(0);
ParagraphFormat format = para.getFormat();
format.setLeftIndent(30);
format.setRightIndent(50);
//Get the second paragraph and set first line indent
para = section.getParagraphs().get(1);
format = para.getFormat();
format.setFirstLineIndent(30);
//Get the third paragraph and set hanging indent
para = section.getParagraphs().get(2);
format = para.getFormat();
format.setFirstLineIndent(-30);
//Save the result document
document.saveToFile("SetParagraphIndents.docx", FileFormat.Docx_2013);
}
}
Reference
이 문제에 관하여(Java에서 Word의 단락을 들여쓰는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/eiceblue/how-to-indent-a-paragraph-in-word-in-java-549d텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)