文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Java怎么添加、回复、修改、删除Word批注

2023-06-02 14:39

关注

这篇文章主要讲解了“Java怎么添加、回复、修改、删除Word批注”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“Java怎么添加、回复、修改、删除Word批注”吧!

批注是一种常用于对特定文档内容进行注解的工具或方法,起到解释说明、标记指正的作用。在本篇文章中,将介绍如何操作Word批注的方法,包括:

添加批注:添加文本到批注、插入图片到批注;

  1.1 给指定段落添加批注

  1.2 给指定字符串添加批注

回复批注;

修改或替换批注:用文本替换批注中的文本内容、用文本替换批注中的图片、用图片替换批注中的图片;

删除批注:删除指定批注中的所有内容、删除指定批注中的指定内容

使用工具:Free Spire.Doc for Java (免费版)

Jar文件获取及导入:

方法1通过官网获取jar包,并解压。解压后,将lib文件夹下的Spire.Doc.jar文件导入java程序。

方法2:通过添加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);     } }

批注添加效果:

Java怎么添加、回复、修改、删除Word批注

【示例2】给指定字符串添加批注

 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();     } }

批注添加效果:

Java怎么添加、回复、修改、删除Word批注

【示例3】回复批注

 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);     } }

批注回复效果:

Java怎么添加、回复、修改、删除Word批注

【示例4】修改或替换批注

 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);     } }

修改或替换结果:

Java怎么添加、回复、修改、删除Word批注

【示例5】删除批注

 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怎么添加、回复、修改、删除Word批注

感谢各位的阅读,以上就是“Java怎么添加、回复、修改、删除Word批注”的内容了,经过本文的学习后,相信大家对Java怎么添加、回复、修改、删除Word批注这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是编程网,小编将为大家推送更多相关知识点的文章,欢迎关注!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯