Java 添加、回覆、修改(替換)、刪除Word批註

批註是一種經常使用於對特定文檔內容進行註解的工具或方法,起到解釋說明、標記指正的做用。在本篇文章中,將介紹如何操做Word批註的方法,包括:html

1. 添加批註:添加文本到批註、插入圖片到批註;java

2. 回覆批註;app

3. 修改或替換批註:用文本替換批註中的文本內容、用文本替換批註中的圖片、用圖片替換批註中的圖片;maven

4. 刪除批註:刪除指定批註中的全部內容、刪除指定批註中的指定內容工具

 


 

使用工具:Free Spire.Doc for Java (免費版)測試

Jar文件導入(參考):spa

方法1經過官網獲取jar包,並解壓。3d

      導入步驟1在程序中新建一個Directory目錄,並將控件包中lib文件夾下的Spire.Doc.jar文件(以下圖)複製到新建的目錄下。code

     導入步驟2鼠標右鍵點擊複製後的jar文件,選擇「Add as Library」,彈出的對話框中,點擊「OK」,完成導入。orm

方法2經過添加maven依賴導入到maven項目,參考導入步驟


 

Java示例代碼

【示例1】添加批註(文本、圖片)

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

public class AddComment {
    public static void main(String[] args) {
        //加載測試文檔
        Document doc = new Document("test.docx");

        //獲取指定段落
        Section sec = doc.getSections().get(0);
        Paragraph para= sec.getParagraphs().get(3);

        //插入文本到批註
        Comment comment = para.appendComment("請在試驗中將包含如下特徵的實驗樣本記錄在冊,並整理好週記錄報表,供後續觀察取樣。");
        comment.getFormat().setAuthor("審校組");
        //插入圖片到批註
        comment.getBody().addParagraph().appendPicture("tp.png");

        //保存文檔
        doc.saveToFile("AddComment.docx", FileFormat.Docx_2010);
    }
}

批註添加效果:

【示例2】回覆批註

import com.spire.doc.*;
import com.spire.doc.fields.Comment;

public class ReplyComment {
    public static void main(String[] args) throws Exception{
        //加載測試文檔
        Document doc = new Document("AddComment.docx");

        //獲取指定批註
        Comment comment = doc.getComments().get(0);

        //回覆批註
        Comment relyC= new Comment(doc);
        relyC.getFormat().setAuthor("實驗組");
        relyC.getBody().addParagraph().appendText("已完成。");
        comment.replyToComment(relyC);

        //保存文檔
        doc.saveToFile("ReplyComment.docx",FileFormat.Docx_2010);
    }
}

批註回覆效果:

 

【示例3】修改或替換批註

import com.spire.doc.*;

public class ModifyComment {
    public static void main(String[] args){
        //加載含有批註的測試文檔
        Document doc = new Document("sample.docx");

        //獲取第一個批註中的第一段,用文本替換原有批註中的文本
        doc.getComments().get(0).getBody().getParagraphs().get(0).replace("請在試驗中將包含如下特徵的實驗樣本記錄在冊,並整理好週記錄報表,供後續觀察取樣。","參照如下實驗方法!",false,false);
        //獲取第一個批註中的第二段,用文本替換原有批註中的圖片
        doc.getComments().get(0).getBody().getParagraphs().get(1).setText("請上報管理科!");

        //獲取第一個批註中的第三段,刪除原有圖片,再調用方法添加新圖片(用圖片替換圖片)
        doc.getComments().get(0).getBody().getParagraphs().get(2).getChildObjects().removeAt(0);
        doc.getComments().get(0).getBody().getParagraphs().get(2).appendPicture("2.png");

        //保存文檔
        doc.saveToFile("ModifyComment.docx",FileFormat.Docx_2010);
    }
}

修改或替換結果:

 

【示例4】刪除批註

import com.spire.doc.*;
import com.spire.doc.FileFormat;

public class DeleteComment{
    public static void main(String[] args) {
        //加載測試文檔
        Document doc = new Document("AddComment.docx");

        //調用方法刪除指定批註(刪除批註中的全部內容)
        doc.getComments().removeAt(0);

        //刪除指定批註中的指定段落(刪除批註中的部份內容)
        doc.getComments().get(0).getBody().getParagraphs().get(1).getChildObjects().removeAt(0);

        //保存文檔
        doc.saveToFile("DeleteComment", FileFormat.Docx_2010);
    }
}

批註刪除效果:

 

(本文完)

 轉載請註明出處!!!!!

相關文章
相關標籤/搜索