Redact ODP Document Online or via Android Apps
Develop powerful Android based ODP presentation redaction utility application. Code listed for search and replace text in ODP file.
Redact ODP Presentation Online
- Import ODP file by uploading it.
- Do it by clicking inside the drop area via drag and drop of annotation app.
- Depending on the size of ODP file and internet speed wait for few seconds.
- Type the text to search and redact
- Enter the replacing text to redact with
- Press the “REDACT” button
- Download the redaction file instantly.
Redact ODP File via Android App
- Add library reference to android project
- Load ODP file using Presentation class
- Use the findAndReplaceText method of SlideUtil class
- Provide relevant parameters including find and replace text
- Save the ODP file
Code : Redact ODP Presentation
Presentation presentation = new Presentation("welcome-to-powerpoint.pptx"); | |
try { | |
SlideUtil.findAndReplaceText(presentation, true, "PowerPoint", "Aspose.Slides", null); | |
presentation.save("replaced.pptx", SaveFormat.Pptx); | |
} finally { | |
if (presentation != null) presentation.dispose(); | |
} |
Develop ODP Redaction Android Application
Need to develop a ODP redaction app or utility? With
Aspose.Slides for Android via Java
a child API of
Aspose.Total for Android via Java
, any android developer can integrate the above API code within its document redaction application. Powerful android library allows programming any document redaction solution. Moreover it can support many popular formats including ODP format.
Android Utility to Redact ODP File
- We host our Java packages in Maven repositories .
- Aspose.Slides for Java is a common JAR file containing byte-code.
- Follow the step-by-step instructions on how to install Aspose.Slides for Android via Java.
System Requirements
- J2SE 6.0 (Java 1.6) and higher
- Java package is cross-platform and runs on all operating systems with JVM implementation.
For more details please refer to [Product Documentation](https://docs.aspose.com/slides/java/system-requirements/).