1. 程式人生 > >Java 讀取Word批註中的文字和圖片

Java 讀取Word批註中的文字和圖片

本文將介紹讀取Word批註的方法,包括讀取Word批註中的文字及圖片。關於操作Word批註的方法還可以參考這兩篇文章:Java 新增、回覆、修改、刪除Word批註;Java 給Word指定字串新增批註。下面將通過Java程式碼來演示如何讀取批註。

工具使用:Word類庫(Free Spire.Doc for Java 免費版)

Jar檔案獲取:可通過官網下載,下載後解壓檔案,並將lib資料夾下的Spire.Doc.jar檔案匯入java程式;也可以通過Maven倉庫安裝匯入,具體路徑配置及匯入方法可以參考教程。

測試文件如下:批註中包含文字和圖片

 

 


 

【示例1】讀取批註中的文字

import com.spire.doc.*;
import com.spire.doc.documents.Paragraph;
import com.spire.doc.fields.Comment;
import com.spire.doc.fields.TextRange;

public class ReadComment {
    public static void main(String[] args) {
        //載入測試文件
        Document doc = new Document();
        doc.loadFromFile("sample.docx");

        //例項化String型別變數
        String text = "";

        //遍歷所有批註
        for(int i = 0;i< doc.getComments().getCount();i++){
            Comment comment = doc.getComments().get(i);
            //遍歷所有批註中的段落
            for(int j= 0;j < comment.getBody().getParagraphs().getCount();j++) {
                Paragraph paragraph = comment.getBody().getParagraphs().get(j);
                //遍歷段落中的物件
                for (Object object : paragraph.getChildObjects()) {
                    //讀取文字
                    if (object instanceof TextRange) {
                        TextRange textRange = (TextRange) object;
                        text = text + textRange.getText();
                    }
                }
            }
        }
        //輸入文字內容
        System.out.println(text);
    }
}

批註文字讀取結果:

 

【示例2】讀取批註中的圖片

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

import javax.imageio.ImageIO;
import java.awt.image.RenderedImage;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;


public class ExtractImgsInComment {
    public static void main(String[] args) throws IOException{
        //載入測試文件
        Document doc = new Document();
        doc.loadFromFile("sample.docx");

        //建立ArrayList陣列物件
        ArrayList images = new ArrayList();

        //遍歷所有批註
        for(int i = 0;i< doc.getComments().getCount();i++){
            Comment comment = doc.getComments().get(i);
            //遍歷所有批註中的段落
            for(int j= 0;j < comment.getBody().getParagraphs().getCount();j++) {
                Paragraph paragraph = comment.getBody().getParagraphs().get(j);
                //遍歷段落中的物件
                for (Object object : paragraph.getChildObjects()) {
                    //獲取圖片物件
                    if(object instanceof DocPicture){
                        DocPicture picture = (DocPicture) object;
                        images.add(picture.getImage());
                    }
                }
            }
        }
        //提取圖片,並指定圖片格式
        for (int z = 0; z< images.size(); z++) {
            File file = new File(String.format("圖片-%d.png", z));
            ImageIO.write((RenderedImage) images.get(z), "PNG", file);
        }
    }
}

批註圖片讀取結果:

 

(本文完)

&n