使用 Java API 进行文档注释

使用 Aspose.Total for Java 对 Microsoft Word、Excel 电子表格、PowerPoint 演示文稿和 PDF 文件进行注释。

 

由于多种原因,使用 Java 应用程序进行文档注释对于跨行业和部门来说是不可或缺的。 在协作环境中,它允许用户直接在文档中添加评论和亮点,从而促进高效的沟通和反馈。 业务工作流程受益于简化的审核和批准流程,利益相关者可以标记文档以指示更改或批准。 注释可以增强理解并提供视觉辅助,特别是在教师和学生可以利用注释进行反馈和理解的教育环境中。 法律专业人士在案件审查过程中依靠文件注释来标记要点,协助法律文件的准备。

此外,医疗保健和金融等需要遵守法规的行业利用注释来跟踪和记录重要信息。 使用 Java 应用程序的文档注释可确保定制、与现有系统集成以及跨平台兼容性,使其成为跨不同部门的文档管理的多功能且高效的解决方案。

注释 Microsoft Word DOC DOCX 文件

使用 Java 向 Microsoft Word 文档添加注释可以通过各种库和 API 来实现。 流行的选择 Aspose.Total for Java,它提供了处理 Microsoft Office 文档(包括 Word 文件)的功能。

要使用 Java 和 Aspose.Total 执行 Word 文档注释,您将专门使用 Aspose.Words for Java 库。 Aspose.Words 提供了一组丰富的功能来处理 Microsoft Word 文档,包括添加注释的功能。 请注意,Aspose.Total 是一个包含多个 Aspose 产品的包,Aspose.Words 是 Word 文档操作的相关组件。

Java 代码 - 添加和删除评论回复

Document doc = new Document(dataDir + "sourcefile.docx");
Comment comment = (Comment) doc.getChild(NodeType.COMMENT, 0, true);
comment.removeReply(comment.getReplies().get(0));
comment.addReply("John Doe", "JD", new Date(), "New reply");
dataDir = dataDir + "comments-removed.docx";
doc.save(dataDir);

Java 代码 - 获取特定作者的评论

Document doc = new Document(getMyDir() + "readcomments.docx");
ArrayList collectedComments = new ArrayList();
NodeCollection comments = doc.getChildNodes(NodeType.COMMENT, true);
for (Comment comment : (Iterable<Comment>) comments) {
if (comment.getAuthor().equals(authorName))
collectedComments.add(comment.getAuthor() + " " + comment.getDateTime() + " " + comment.toString(SaveFormat.TEXT));
}

管理 Microsoft Excel XLS XLSX 注释

要使用 Java 和 Aspose.Total 执行 Excel 电子表格注释,您将专门使用 Aspose.Cells for Java 库。 Aspose.Cells 提供了处理 Microsoft Excel 文件的全面功能,包括添加注释的功能。 下面是 Java 代码,演示了如何使用 Aspose.Cells for Java 注释 Excel 电子表格:

Java 代码 - 在 Excel 文件中添加注释

Workbook workbook = new Workbook();
int sheetIndex = workbook.getWorksheets().add();
Worksheet worksheet = workbook.getWorksheets().get(sheetIndex);
int commentIndex = worksheet.getComments().add("F5");
com.aspose.cells.Comment comment = worksheet.getComments().get(commentIndex);
comment.setNote( "Hello Aspose!");
workbook.save(dataDir + "book1.out.xls");

Java 代码 - 从 Excel 文件中删除注释

Workbook workbook = new Workbook(dataDir + "ExcelDocumentwithComments.xlsx");
Worksheet worksheet = workbook.getWorksheets().get(0);
CommentCollection comments = worksheet.getComments();
ThreadedCommentCollection threadedComments = worksheet.getComments().getThreadedComments("I4");
ThreadedCommentAuthor author = threadedComments.get(0).getAuthor();
comments.removeAt("I4");
ThreadedCommentAuthorCollection authors = workbook.getWorksheets().getThreadedCommentAuthors();
authors.removeAt(authors.indexOf(author));
workbook.save(dataDir + "removedcomments.xlsx");

注释 Powerpoint PPT PPTX 演示文稿

要使用 Aspose.Total for Java 注释 PowerPoint 演示文稿,您将主要利用 Aspose.Slides for Java 库。 该库提供了用于处理 Microsoft PowerPoint 文件的全面功能,包括添加注释的功能。 以下 Java 代码片段演示了如何使用 Aspose.Slides for Java 对 PowerPoint 演示文稿进行注释:

Java 代码 - 在 Powerpoint 演示文稿中添加注释

Presentation presentation = new Presentation("presentation.pptx");
try {
presentation.getSlides().addEmptySlide(presentation.getLayoutSlides().get_Item(0));
ICommentAuthor author = presentation.getCommentAuthors().addAuthor("Angela", "AG");
Point2D.Float point = new Point2D.Float(0.2f, 0.2f);
author.getComments().addComment("Hello, this is slide comment", presentation.getSlides().get_Item(0), point, new Date());
presentation.save("add-comment.pptx", SaveFormat.Pptx);
} finally {
if (presentation != null)
presentation.dispose();
}

Java 代码 - 从 Powerpoint 演示文稿中删除评论作者

Presentation presentation = new Presentation("example.pptx");
try {
for (ICommentAuthor author : presentation.getCommentAuthors())
{
author.getComments().clear();
}
presentation.getCommentAuthors().clear();
presentation.save("example_out.pptx", SaveFormat.Pptx);
} finally {
if (presentation != null) presentation.dispose();
}

Java 应用程序中的 PDF 注释

要使用 Aspose.Total for Java 注释 PDF 文档,您将专门使用 Aspose.PDF for Java 库。 Aspose.PDF 提供了用于创建、操作和注释 PDF 文件的广泛功能。 确保项目依赖项中有 Aspose.PDF for Java 库。

下面的 API Java 代码演示了如何注释 PDF 文档:

Java 代码 - 在 PDF 文件中添加注释

Document pdfDocument = new Document();
Page targetPage = pdfDocument.getPages().add();
targetPage.getParagraphs().add(new TextFragment("Here are the sample contents"));
TextAnnotation annotation = new TextAnnotation(pdfDocument.getPages().get_Item(1), new Rectangle(220, 420, 420, 620));
annotation.setTitle("Title of the annotation");
annotation.setSubject("Subject of the annotation");
annotation.setState(AnnotationState.Accepted);
annotation.setContents("Contents of the annotation");
annotation.setOpen(true);
annotation.setIcon(TextIcon.Key);
Border border = new Border(annotation);
border.setWidth(6);
border.setDash(new Dash(1, 1));
annotation.setBorder(border);
pdfDocument.getPages().get_Item(1).getAnnotations().add(annotation);
pdfDocument.save("AnnotatedPdf.pdf");