彩票走势图

Word处理控件Aspose.Words功能演示:使用 Java 在 Word (DOCX/DOC) 中插入或删除注释

翻译|使用教程|编辑:胡涛|2023-02-07 11:33:35.507|阅读 118 次

概述:本文主要介绍aspose如何使用 Java 在 Word (DOCX/DOC) 中插入或删除注释,欢迎查阅

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

相关链接:

aspose下载

Aspose.Words 是一种高级Word文档处理API,用于执行各种文档管理和操作任务。API支持生成,修改,转换,呈现和打印文档,而无需在跨平台应用程序中直接使用Microsoft Word。此外,

Aspose API支持流行文件格式处理,并允许将各类文档导出或转换为固定布局文件格式和最常用的图像/多媒体格式。

Aspose.words 最新下载

注释用于 word 文档、DOCX或DOC中,用于建议改进和修改。让我们探讨如何使用 Java 以编程方式插入评论以及删除或移除评论。您可以根据需要添加作者姓名、首字母缩写、评论文本、日期和时间。我们将使用Aspose.Words for Java API 执行所有这些任务。

一、在 Word 文件 (DOCX/DOC) API 中插入或删除评论 – 安装

我们需要安装 Aspose.Words for C++ API 来转换 Microsoft Word (DOCX/DOC) 文件。您可以轻松地从NuGet库安装 API或在控制台上使用以下命令安装它。

Install-Package Aspose.Words.Cpp -Version 20.8.0

二、使用 C++ 将 Word (DOCX/DOC) 转换为 HTML

您可以根据下面提到的配置从下载部分或 Maven 存储库下载最新版本的 Aspose.Words for Java API :

存储库:

<repositories>
<repository>
<id>AsposeJavaAPI</id>
<name>Aspose Java API</name>
<url>//repository.aspose.com/repo/</url>
</repository>
</repositories>

依赖:

<dependencies>
<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-words</artifactId>
<version>20.6</version>
<classifier>jdk17</classifier>
</dependency>
<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-words</artifactId>
<version>20.7</version>
<classifier>javadoc</classifier>
</dependency>
</dependencies>

所以 API 现在已经配置好了,我们可以继续探索在 Word 文档中处理评论的不同用例。

三、使用 Java 在现有 Word 文档中插入注释

您可以使用 Aspose.Words for Java API 在现有的 Microsoft Word 文件、DOCX 或 DOC 中插入或添加注释。这在审查文件时很有用,例如主管可以对可行性报告提出多项更改或改进建议。此外,任何拥有 word 文档编辑权限的人都可以使用评论。您需要按照以下步骤在 word 文件 (DOCX/DOC) 中插入注释:

  1. 使用 Document 类加载现有的 DOCX 文件
  2. 创建评论
  3. 保存 DOCX 文件

以下代码片段显示了如何使用 Java 在 Word 文档中插入注释:

// Load source word document
Document doc = new Document(dataDir + "Comments.docx");

// Initialize DocumentBuilder object
DocumentBuilder builder = new DocumentBuilder(doc);

// Create new comment
Comment comment = new Comment(doc, "Aspose", "Initials", new java.util.Date());
builder.getCurrentParagraph().appendChild(comment);
comment.getParagraphs().add(new com.aspose.words.Paragraph(doc));
comment.getFirstParagraph().getRuns().add(new com.aspose.words.Run(doc, "Sample Comment"));

// Save output file
doc.save(dataDir + "Comments_Output.docx");

下面的屏幕截图显示了在现有 Word 文档中添加的示例评论:

在word中插入评论

四、使用 Java 在新的 Word 文档中插入注释

创建新的 Word 文档时,注释也很有用。例如,某些文本可能需要详细说明,这可以在评论的帮助下进行解释。同样,在创建新的 DOCX 文件时,可能会有数百个用例,其中注释可以提供帮助。您可以按照以下步骤轻松添加或插入评论:

  1. 初始化 DocumentBuilder 对象
  2. 添加示例文本
  3. 创建自定义评论
  4. 保存 DOCX 文件

下面的代码片段显示了如何使用 Java 在从头开始创建新的 Word 文档时插入注释:

// Initialize new word document
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);

// Add some text
builder.write("Some text is added.");

// Create new comment
Comment comment = new Comment(doc, "Aspose", "Initials", new java.util.Date());
builder.getCurrentParagraph().appendChild(comment);
comment.getParagraphs().add(new com.aspose.words.Paragraph(doc));
comment.getFirstParagraph().getRuns().add(new com.aspose.words.Run(doc, "Sample Comment"));

// Save output DOCX file
doc.save(dataDir + "Comments_Output.docx");

下面的屏幕截图显示了在新 word 文档上添加评论的输出:

删除word中的评论

五、使用 Java 从 Word 文档中删除特定评论

当将建议的改进或修改合并到 word 文档中时,注释通常会被删除。当您需要删除特定评论时,您可以按照以下步骤操作:

  1. 加载源word文档
  2. 指定作者姓名
  3. 删除指定作者的评论

下面的代码片段显示了如何使用 Java 从 word 文件中删除特定评论:

// Open the document.
Document doc = new Document(dataDir + "Comments.docx");
String authorName = "Aspose";
// Collect all comments in the document
NodeCollection comments = doc.getChildNodes(NodeType.COMMENT, true);
// Look through all comments and remove those written by the Aspose author.
for (int i = comments.getCount() - 1; i >= 0; i--) {
Comment comment = (Comment) comments.get(i);
if (comment.getAuthor().equals(authorName))
comment.remove();
}
// Save output DOCX file
doc.save(dataDir + "output.docx");

六、使用 Java 删除 Word 文档中的所有评论

Word文档的所有评论都可以一次性删除。您可以按照以下步骤删除所有评论:

  1. 打开word docx文件
  2. 收集文件中的所有评论
  3. 删除所有评论

以下代码片段详细说明了如何使用 Java 删除 Word 文档中的所有评论:

// Open the document.
Document doc = new Document(dataDir + "Comments.docx");
// Collect all comments in the document
NodeCollection comments = doc.getChildNodes(com.aspose.words.NodeType.COMMENT, true);
// Remove all comments.
comments.clear();
doc.save(dataDir + "output.docx");

以上便是使用 Java 在 Word (DOCX/DOC) 中插入或删除注释 ,要是您还有其他关于产品方面的问题,欢迎咨询我们,或者加入我们官方技术交流群。


欢迎下载|体验更多Aspose产品

点此获取更多Aspose产品信息 或 加入Aspose技术交流群(761297826

标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn


为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP