Java의 Word에서 글머리 기호 및 번호 매기기 목록 만들기
설치
방법 1: Free Spire.Doc for Java을 다운로드하고 압축을 풉니다. 그런 다음 Spire.Doc.jar 파일을 Java 애플리케이션에 종속성으로 추가합니다.
방법 2: 다음 구성을 pom.xml에 추가하여 maven 프로젝트에 jar 종속성을 추가할 수도 있습니다.
<repositories>
<repository>
<id>com.e-iceblue</id>
<name>e-iceblue</name>
<url>http://repo.e-iceblue.com/nexus/content/groups/public/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>e-iceblue</groupId>
<artifactId>spire.doc.free</artifactId>
<version>3.9.0</version>
</dependency>
</dependencies>
코드 조각
import com.spire.doc.*;
import com.spire.doc.documents.*;
public class Bullets {
public static void main(String[] args){
//Create a Word document
Document document = new Document();
//Add a section
Section section = document.addSection();
//Add 8 paragraphs
Paragraph paragraph1 = section.addParagraph();
paragraph1.appendText("Bulleted List");
paragraph1.applyStyle(BuiltinStyle.Heading_1);
Paragraph paragraph2 = section.addParagraph();
paragraph2.appendText("O. Henry");
Paragraph paragraph3 = section.addParagraph();
paragraph3.appendText("Ernest Miller Hemingway");
Paragraph paragraph4 = section.addParagraph();
paragraph4.appendText("Ralph Waldo Emerson");
Paragraph paragraph5 = section.addParagraph();
paragraph5.appendText("Numbered List");
paragraph5.applyStyle(BuiltinStyle.Heading_1);
Paragraph paragraph6 = section.addParagraph();
paragraph6.appendText("Monday");
Paragraph paragraph7 = section.addParagraph();
paragraph7.appendText("Tuesday");
Paragraph paragraph8 = section.addParagraph();
paragraph8.appendText("Wednesday");
//Create bulleted list for the 2-4 paragraphs
for(int i = 1; i < 4; i++){
Paragraph para = section.getParagraphs().get(i);
para.getListFormat().applyBulletStyle();
para.getListFormat().getCurrentListLevel().setNumberPosition(-10);
}
//Create numbered list for the 6-8 paragraphs
for(int i = 5; i < 8; i++){
Paragraph para = section.getParagraphs().get(i);
para.getListFormat().applyNumberedStyle();
para.getListFormat().getCurrentListLevel().setNumberPosition(-10);
}
//Save the document
document.saveToFile("CreateLists.docx", FileFormat.Docx_2013);
}
}
산출
Reference
이 문제에 관하여(Java의 Word에서 글머리 기호 및 번호 매기기 목록 만들기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/codesharing/create-bulleted-and-numbered-lists-in-word-in-java-3go텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)