PDFBox - 加密 PDF 文档


在上一章中,我们了解了如何在 PDF 文档中插入图像。在本章中,我们将讨论如何加密 PDF 文档。

加密 PDF 文档

您可以使用StandardProtectionPolicyAccessPermission 类提供的方法来加密 PDF 文档。

AccessPermission类用于通过为其分配访问权限来保护 PDF 文档使用此类,您可以限制用户执行以下操作。

  • 打印文档
  • 修改文档内容
  • 复制或提取文档内容
  • 添加或修改注释
  • 填写交互式表单字段
  • 提取文本和图形以供视障人士使用
  • 组装文档
  • 打印质量下降

StandardProtectionPolicy类用于向文档添加基于密码的保护

以下是加密现有 PDF 文档的步骤。

第 1 步:加载现有 PDF 文档

使用PDDocument类的静态方法load()加载现有 PDF 文档。此方法接受文件对象作为参数,因为这是一个静态方法,您可以使用类名调用它,如下所示。

File file = new File("path of the document") 
PDDocument document = PDDocument.load(file);

步骤2:创建访问权限对象

实例化AccessPermission类,如下所示。

AccessPermission accessPermission = new AccessPermission();

第3步:创建StandardProtectionPolicy对象

通过传递所有者密码、用户密码和AccessPermission对象来实例化StandardProtectionPolicy类,如下所示。

StandardProtectionPolicy spp = new StandardProtectionPolicy("1234","1234",accessPermission);

步骤 4:设置加密密钥的长度

使用setEncryptionKeyLength()方法设置加密密钥长度,如下所示。

spp.setEncryptionKeyLength(128);

第5步:设置权限

使用StandardProtectionPolicy 类的setPermissions()方法设置权限。此方法接受AccessPermission对象作为参数。

spp.setPermissions(accessPermission);

第 6 步:保护文档

您可以使用PDDocument类的protected()方法来保护您的文档,如下所示。将StandardProtectionPolicy对象作为参数传递给此方法。

document.protect(spp);

第7步:保存文档

添加所需内容后,使用PDDocument类的save()方法保存 PDF 文档,如以下代码块所示。

document.save("Path");

第 8 步:关闭文档

最后,使用PDDocument类的close()方法关闭文档,如下所示。

document.close();

例子

假设我们有一个名为example.pdf的 PDF 文档,位于路径C:/PdfBox_Examples/中,其中有空白页面,如下所示。

样本文件

本例演示如何对上述PDF文档进行加密。在这里,我们将加载名为sample.pdf的PDF文档并对其进行加密。将此代码保存在名为 EncriptingPDF.java 的文件中

import java.io.File;
 
import org.apache.pdfbox.pdmodel.PDDocument;
import org.apache.pdfbox.pdmodel.encryption.AccessPermission;
import org.apache.pdfbox.pdmodel.encryption.StandardProtectionPolicy;
public class EncriptingPDF {
  
   public static void main(String args[]) throws Exception {
      //Loading an existing document
      File file = new File("C:/PdfBox_Examples/sample.pdf");
      PDDocument document = PDDocument.load(file);
   
      //Creating access permission object
      AccessPermission ap = new AccessPermission();         

      //Creating StandardProtectionPolicy object
      StandardProtectionPolicy spp = new StandardProtectionPolicy("1234", "1234", ap);

      //Setting the length of the encryption key
      spp.setEncryptionKeyLength(128);

      //Setting the access permissions
      spp.setPermissions(ap);

      //Protecting the document
      document.protect(spp);

      System.out.println("Document encrypted");

      //Saving the document
      document.save("C:/PdfBox_Examples/sample.pdf");
      //Closing the document
      document.close();

   }
}

使用以下命令从命令提示符编译并执行保存的 Java 文件。

javac EncriptingPDF.java
java EncriptingPDF

执行后,上述程序会对给定的 PDF 文档进行加密,并显示以下消息。

Document encrypted

如果您尝试打开文档example.pdf,则无法打开,因为它已加密。相反,它会提示输入密码以打开文档,如下所示。

文件加密