PPT PPTX ODP POT ppsx
Aspose.Slides  for Java
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 文件保护的步骤。

  1. 使用 Presentation 实例加载 ODP

  2. 使用 ProtectionManager 类删除写保护

  3. 以 ODP 格式保存结果

其他支持的格式

使用 Java,您还可以取消对以下格式的保护: