java批注_WORD添加批注(JAVA)

import com.spire.doc.*;

import com.spire.doc.documents.CommentMark;

import com.spire.doc.documents.CommentMarkType;

import com.spire.doc.documents.Paragraph;

import com.spire.doc.documents.TextSelection;

import com.spire.doc.fields.Comment;

public class AddCommentToCharacters {

public static void main(String[] args) {

//加载测试文档

Document doc = new Document();

doc.loadFromFile("test.docx");

//查找指定字符串

TextSelection[] selections = doc.findAllString("皱状厚膜", true, false);

//获取关键字符串所在段落

Paragraph para = selections[0].getAsOneRange().getOwnerParagraph();

int index = para.getChildObjects().indexOf(selections[0].getAsOneRange());

//添加批注ID

CommentMark start = new CommentMark(doc);

start.setCommentId(1);

start.setType(CommentMarkType.Comment_Start);

CommentMark end = new CommentMark(doc);

end.setType(CommentMarkType.Comment_End);

end.setCommentId(1);

//添加批注内容

String str = "给指定字符串添加批注";

Comment comment = new Comment(doc);

comment.getFormat().setCommentId(1);

comment.getBody().addParagraph().appendText(str);

comment.getFormat().setAuthor("作者:");

comment.getFormat().setInitial("CM");

para.getChildObjects().insert(index, start);

para.getChildObjects().insert(index + 1, selections[0].getAsOneRange());

para.getChildObjects().insert(index + 2,end);

para.getChildObjects().insert(index + 3, comment);

//保存文档

doc.saveToFile("字符串批注.docx",FileFormat.Docx_2013);

doc.dispose();

}

}

原文:https://www.cnblogs.com/qiu18359243869/p/11806383.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值