PPTX
DOCX
XLSX
PDF
ODP
ODP
從 Java 中的 ODP 中刪除評論和評論作者
構建您自己的 Java 應用程序,以使用服務器端 API 操作文檔文件中的評論和作者。
通過 Java 從 ODP 中刪除評論
為了從 ODP 文件中刪除註釋,我們將使用 Aspose.Slides for Java API,它功能豐富、功能強大且易於使用用於 Java 平台的文檔操作 API。
從 ODP 中刪除註解 - Java
Presentation presentation = new Presentation("example.odp");
try {
// Deletes all comments from the presentation
for (ICommentAuthor author : presentation.getCommentAuthors())
{
author.getComments().clear();
}
// Deletes all authors
presentation.getCommentAuthors().clear();
presentation.save("example_out.pptx", SaveFormat.Pptx);
} finally {
if (presentation != null) presentation.dispose();
}
如何通過 Java 從 ODP 中刪除評論
安裝Aspose.Slides for Java。請參閱 安裝 。
使用 Presentation 類的實例加載 ODP
遍歷加載的 ODP 的所有作者
刪除作者的所有評論
最後刪除所有作者