PPT PPTX ODP POT ppsx
Aspose.Slides  for Java
PPT

Redact PPT using Java

Build your own Java apps to find and replace text in presentation files using server-side APIs. Learn how to search and replace text in content, comments or metadata of PPT presentations

Redact PPT Presentation via Java

A basic document search and replace text in contents, comments, slide notes or metadata with Aspose.Slides for Java APIs can be done with just few lines of code. Find and replace text in PowerPoint and OpenOffice. Edit text, comments, metadata in presentation via regexp data matching.

Redact PPT Presentation using Java


Presentation presentation = new Presentation("welcome-to-powerpoint.ppt");
try {
    SlideUtil.findAndReplaceText(presentation, true, "PowerPoint", "Aspose.Slides", null);
    presentation.save("replaced.ppt", SaveFormat.Ppt);
} finally {
    if (presentation != null) presentation.dispose();
}

How to Redact PPT via Java

These are the steps to Redact PPT files.

  1. Load PPT with an instance of Presentation.

  2. Use FindAndReplaceText method to find and replace text.

  3. Save result in PPT format

Online PPT Redaction Live Demos