Java - Word 문서에 WordArt 삽입 또는 읽기
종속성 추가
코딩하기 전에 Free Spire.Doc for Java를 Java 프로젝트에 포함하는 데 필요한 종속성을 추가해야 합니다. 두 가지 방법이 있습니다.
방법 1: maven을 사용하는 경우 프로젝트의 pom.xml 파일에 다음 코드를 추가하여 Java용 Free Spire.Doc의 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>
방법 2: maven을 사용하지 않는 경우 this link에서 Java용 무료 Spire.Doc을 다운로드하고 zip 파일을 추출한 다음 lib 폴더 아래의 Spire.Doc.jar 파일을 프로젝트에 종속 항목으로 가져올 수 있습니다.
Java를 사용하여 WordArt를 Word에 삽입
다음은 WordArt를 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.documents.ShapeType;
import com.spire.doc.fields.ShapeObject;
import java.awt.*;
public class InsertWordArtInWord {
public static void main(String[] args){
//Create a Document instance
Document doc = new Document();
//Load a Word document
doc.loadFromFile("input.docx");
//Get the first section
Section section = doc.getSections().get(0);
//Add a paragraph to the section
Paragraph paragraph = section.addParagraph();
//Add a shape to the paragraph
ShapeObject shape = paragraph.appendShape(250, 70, ShapeType.Text_Wave_3);
//Set the position of the shape
shape.setVerticalPosition(20);
shape.setHorizontalPosition(80);
//Set the text of WordArt
shape.getWordArt().setText("Happy Birthday");
//Set the fill color
shape.setFillColor(Color.orange);
//Set the border color of the text.
shape.setStrokeColor(Color.YELLOW);
//Save the result document
doc.saveToFile("InsertWordArt.docx", FileFormat.Docx);
}
}
Java를 사용하여 Word에서 WordArt 읽기
다음은 Word 문서에서 WordArt를 읽는 주요 단계입니다.
import com.spire.doc.Document;
import com.spire.doc.DocumentObject;
import com.spire.doc.Section;
import com.spire.doc.documents.Paragraph;
import com.spire.doc.fields.ShapeObject;
public class ReadWordArt {
public static void main(String[] args){
//Create a Document instance
Document doc = new Document();
//Load a word document
doc.loadFromFile("InsertWordArt.docx");
//Loop through all the sections in the document
for (Section section :(Iterable<? extends Section>) doc.getSections()) {
//Loop through all the paragraphs in each section
for (Paragraph paragraph : (Iterable<? extends Paragraph>) section.getBody().getParagraphs()) {
//Loop through all the child objects in each paragraph
for (DocumentObject documentObject : (Iterable<? extends DocumentObject>) paragraph.getChildObjects()) {
//Detect if the child object is a shape
if (documentObject instanceof ShapeObject) {
ShapeObject shapeObject = (ShapeObject) documentObject;
//Detect if the shape is a WordArt
String text = shapeObject.getWordArt().getText();
if (text != "") {
//Read the WordArt text
System.out.println("WordArt Text:" + text);
}
}
}
}
}
}
}
Reference
이 문제에 관하여(Java - Word 문서에 WordArt 삽입 또는 읽기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/alexis92/java-insert-or-read-wordart-in-word-documents-3iok텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)