PPT
PPTX
ODP
POT
ppsx
ODP
使用 Java 解鎖 ODP
構建您自己的 Java 應用程序以從 PowerPoint 中刪除密碼並使用服務器端 API 解密演示文稿文件。
通過 Java 從 ODP 演示文稿中刪除加密
使用 Aspose.Slides for Java,您可以取消對 ODP 演示文稿的加密或密碼保護。這樣,用戶就可以不受限制地訪問或修改 ODP 表示。
使用 Java 從 ODP 禁用密碼保護
LoadOptions loadOptions = new LoadOptions();
loadOptions.setPassword("123123");
Presentation presentation = new Presentation("pres.odp", loadOptions);
try {
presentation.getProtectionManager().removeEncryption();
presentation.save("encryption-removed.odp", SaveFormat.Odp);
} finally {
if (presentation != null) presentation.dispose();
}
使用 Java 從 ODP 演示文稿中刪除寫保護
Presentation presentation = new Presentation("pres.odp");
try {
presentation.getProtectionManager().removeWriteProtection();
presentation.save("write-protection-removed.odp", SaveFormat.Odp);
} finally {
if (presentation != null) presentation.dispose();
}
如何通過 Java 從 ODP 中刪除密碼
這些是取消 ODP 文件保護的步驟。
使用 Presentation 實例加載 ODP
使用 ProtectionManager 類刪除寫保護
以 ODP 格式保存結果