Java 添加、回复、修改(替换)、删除Word批注
程序员文章站
2022-03-12 16:13:14
批注是一种常用于对特定文档内容进行注解的工具或方法,起到解释说明、标记指正的作用。在本篇文章中,将介绍如何操作Word批注的方法,包括: 1. 添加批注:添加文本到批注、插入图片到批注; 2. 回复批注; 3. 修改或替换批注:用文本替换批注中的文本内容、用文本替换批注中的图片、用图片替换批注中的图 ......
批注是一种常用于对特定文档内容进行注解的工具或方法,起到解释说明、标记指正的作用。在本篇文章中,将介绍如何操作word批注的方法,包括:
1. 添加批注:添加文本到批注、插入图片到批注;
2. 回复批注;
3. 修改或替换批注:用文本替换批注中的文本内容、用文本替换批注中的图片、用图片替换批注中的图片;
4. 删除批注:删除指定批注中的所有内容、删除指定批注中的指定内容
使用工具:free spire.doc for java (免费版)
jar文件导入(参考):
方法1:通过官网获取jar包,并解压。
导入步骤1:在程序中新建一个directory目录,并将控件包中lib文件夹下的spire.doc.jar文件(如下图)复制到新建的目录下。
导入步骤2:鼠标右键点击复制后的jar文件,选择“add as library”,弹出的对话框中,点击“ok”,完成导入。
方法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); } }
批注删除效果:
(本文完)
转载请注明出处!!!!!
上一篇: java 线程开元篇
下一篇: C# Ftp Client 基本操作