PPT
PPTX
ODP
POT
ppsx
ODP
Lock or Password Protect ODP using Java
Build your own Java apps to protect presentation files using server-side APIs.
Protecting a ODP Presentation via Java
Using Aspose.Slides for Java, you can protect your ODP presentation from opening or modification by setting a password. Then, to open or modify the locked presentation, a user has to provide the password.
Encrypting a ODP Presentation using Java
Presentation presentation = new Presentation("pres.odp");
try {
presentation.getProtectionManager().encrypt("123123");
presentation.save("encrypted-pres.odp", SaveFormat.Odp);
} finally {
if (presentation != null) presentation.dispose();
}
Setting Write Protection to a ODP Presentation using Java
Presentation presentation = new Presentation("pres.odp");
try {
presentation.getProtectionManager().setWriteProtection("123123");
presentation.save("write-protected-pres.odp", SaveFormat.Odp);
} finally {
if (presentation != null) presentation.dispose();
}
How to Password Protect ODP via Java
These are the steps to Protect ODP files.
Load ODP with an instance of Presentation
Protect the presentation using ProtectionManager class
Save result in ODP format