PPTX DOCX XLSX PDF ODP
Aspose.Slides  for Java
PPT

Remove Comments & Comment Authors from PPT in Java

Build your own Java apps to manipulate comments & authors in document files using server-side APIs.

Remove Comments from PPT via Java

In order to remove annotations from the PPT file, we’ll use Aspose.Slides for Java API which is a feature-rich, powerful and easy to use document manipulation API for Java platform.

Delete Annotations from PPT - Java


Presentation presentation = new Presentation("example.ppt");
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();
}

How to Remove Comments from PPT via Java

  1. Install Aspose.Slides for Java. See Installation .

  2. Load PPT with an instance of Presentation class

  3. Iterate over all Authors of loaded PPT

  4. Remove all Comments of an author

  5. Remove all Authors at the end

Other Supported Annotation Formats

Using Java, one can easily annotate other formats including.