使用 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");