>  기사  >  Java  >  Java를 사용하여 Word에서 텍스트와 그림을 바꾸는 방법

Java를 사용하여 Word에서 텍스트와 그림을 바꾸는 방법

WBOY
WBOY앞으로
2023-05-24 23:04:271840검색

머리말

Word에서는 바꾸기 기능을 통해 지정된 텍스트를 개별적으로 또는 전체적으로 찾아서 바꿀 수 있습니다. 일반적인 텍스트 대체 방법 외에도 다음과 같은 다양한 개체를 사용하여 대체하는 방법도 소개합니다.

1 텍스트를 대체할 문자열 내용을 지정합니다(replce(matchString, newValue, caseSensitive, WholeWord) 메서드를 통해). 대체 새 문자열 내용을 직접 지정)

2. 문서 내용 대체 텍스트 가져오기(replace(String matchString, TextSelection textSelection, boolean caseSensitive, boolean WholeWord) 메소드를 통해 지정된 텍스트 대체)

3.

4. 이미지 교체 이미지

도구 및 jar 가져오기 사용:

Spire.Doc.jar 파일을 수동으로 다운로드하고 압축을 풀고 가져올 수 있는

Free Spire.Doc의 jar 패키지를 사용해야 합니다. 이를 Java 프로그램에 추가하거나 Maven 저장소를 통해 다운로드하여 가져올 수 있습니다. 1. 텍스트를 대체할 문자열 내용 지정

import com.spire.doc.*;

public class ReplaceTextWithText {
    public static void main(String[] args) {
        //加载文档
        Document doc = new Document();
        doc.loadFromFile("test.docx");

        //要替换第一个出现的指定文本,只需在替换前调用setReplaceFirst方法来指定只替换第一个出现的指定文本
        //doc.setReplaceFirst(true);

        //调用方法用新文本替换原文本内容
        doc.replace("系统测试", "System Testing", false, true);

        //保存文档
        doc.saveToFile("ReplaceAllText.docx",FileFormat.Docx_2013);
        doc.dispose();
    }
}

Java를 사용하여 Word에서 텍스트와 그림을 바꾸는 방법2. 텍스트를 대체할 문서 내용 가져오기

import  com.spire.doc.*;
import com.spire.doc.documents.TextSelection;

public class ReplaceTextWithDocument {
    public static void main(String[] args) {
        //加载文档1
        Document doc1 = new Document();
        doc1.loadFromFile("test.docx");

        //加载文档2
        Document doc2 = new Document();
        doc2.loadFromFile("TargetFile.docx");
        //查找文档2中的指定内容
        TextSelection textSelection = doc2.findString("Falling under the scope of black box testing, " +
                "system testing is a phase in the software " +
                "testing cycle where a total and integrated" +
                " application /system is tested.",false,false);

        //用文档2中查找到的内容替换文档1中的指定字符串
        doc1.replace("System Test, ST",textSelection,false,true);

        //保存文档1
        doc1.saveToFile("ReplaceTextWithDocument.docx",FileFormat.Docx_2013);
        doc1.dispose();
    }
}

테스트에 사용된 두 문서는 다음과 같습니다. 문서 2의 텍스트 내용을 문서 1에 지정된 텍스트 내용:

Java를 사용하여 Word에서 텍스트와 그림을 바꾸는 방법교체 결과:

Java를 사용하여 Word에서 텍스트와 그림을 바꾸는 방법3. 이미지 교체 텍스트

import com.spire.doc.*;
import com.spire.doc.documents.TextSelection;
import com.spire.doc.fields.DocPicture;
import com.spire.doc.fields.TextRange;

public class ReplaceTextWithImg {
    public static void main(String[] args) {
        //加载文档
        Document doc = new Document("test.docx");
        //查找需要替换的字符串
        TextSelection[] textSelection = doc.findAllString("系统测试",true,false);
        int index ;

        //加载图片替换文本字符串
        for (Object obj : textSelection) {
            TextSelection Selection = (TextSelection)obj;
            DocPicture pic = new DocPicture(doc);
            pic.loadImage("tp.png");
            TextRange range = Selection.getAsOneRange();
            index = range.getOwnerParagraph().getChildObjects().indexOf(range);
            range.getOwnerParagraph().getChildObjects().insert(index,pic);
            range.getOwnerParagraph().getChildObjects().remove(range);
        }
        //保存文档
        doc.saveToFile("ReplaceTextWithImage.docx", FileFormat.Docx_2013);
        doc.dispose();
    }
}

Java를 사용하여 Word에서 텍스트와 그림을 바꾸는 방법4. 이미지 교체 이미지

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

public class ReplacePictureWithPicture {
    public static void main(String[] args) {
        //加载Word文档
        Document doc = new Document();
        doc.loadFromFile("sample.docx");

        //获取文档中的指定段落
        Section section = doc.getSections().get(0);
        Paragraph para = section.getParagraphs().get(0);
        //替换段落中的第一张图片
        Object obj = para.getChildObjects().get(0);
        if(obj instanceof DocPicture){
            DocPicture pic = (DocPicture)obj;
            pic.loadImage("tp.png");
        }

        /*//批量替换图片
        for(int i =0;i < section.getParagraphs().getCount();i++){
            Object obj = section.getParagraphs().get(i).getChildObjects();
            if(obj instanceof DocPicture){
                DocPicture pic = (DocPicture)obj;
                pic.loadImage("tp.png");
            }
        }*/

        //保存结果文档
        doc.saveToFile("ReplaceWithImage.docx", FileFormat.Docx_2013);
        doc.dispose();
    }
}

위 내용은 Java를 사용하여 Word에서 텍스트와 그림을 바꾸는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 yisu.com에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제