USING IRONPDF FOR JAVA

How to Password Protect PDF in Java

Updated September 8, 2024
Share:

This article will demonstrate how to use IronPDF to work with PDF documents and also protect new files with user password.

IronPDF - Java PDF Library

IronPDF is a Java library for working with PDF documents. It provides a wide range of features for generating and manipulating PDFs, including the ability to add text, images, and other types of content, and control the layout and formatting of the document. It also provides a number of important features for securing PDF content, such as password protection.

Steps to Protect PDF using Password in Java Applications

Prerequisites for Project Setup

To use IronPDF to work with PDFs in a Java Maven project, you will need to make sure that you have the following prerequisites:

  1. Java Development Kit (JDK): A running current version of Java must be installed on your computer. If you don't have JAR files, then download the latest JDK from the Oracle website.
  2. Maven: Maven is an important build automation tool for Java projects which is required to manage the project and its dependencies. Download Maven or JAR file from the Apache Maven website if you don't have it installed.
  3. IronPDF for Java Library: You will also require the IronPDF for Java library which will be added to your Maven project as a dependency. This can be done by adding the following dependency to your project's pom.xml file. Maven will automatically download and install it in the project.

    <dependency>
       <groupId>com.ironsoftware</groupId>
       <artifactId>com.ironsoftware</artifactId>
       <version>2024.9.1</version>
    </dependency>
    XML
  4. Another dependency required is Slf4j. Add Slf4j dependency in the pom.xml file.

    <dependency>
        <groupId>org.slf4j</groupId>
        <artifactId>slf4j-simple</artifactId>
        <version>2.0.3</version>
    </dependency>
    XML

Once you have downloaded and installed your password protect PDF in Java program, you are ready to use IronPDF to protect PDF file with password protection.

Important Steps Before Writing Code

The first step is to import the IronPDF required classes in Java code. Add the following code at the top of "Main.java" file:

import com.ironsoftware.ironpdf.PdfDocument;
import com.ironsoftware.ironpdf.metadata.MetadataManager;
import com.ironsoftware.ironpdf.security.PdfPrintSecurity;
import com.ironsoftware.ironpdf.security.SecurityManager;
import com.ironsoftware.ironpdf.security.SecurityOptions;

import java.io.IOException;
import java.nio.file.Paths;
import java.util.Date;
JAVA

Now, in the main method, enter your license key using the IronPDF setLicenseKey method.

License.setLicenseKey("Your license key");
JAVA

Open an Encrypted PDF Document

The following code snippet will open a document that was encrypted with the password "password":

PdfDocument pdf = PdfDocument.fromFile(Paths.get("encrypted.pdf", "secretPassword"));
JAVA

In the above code snippet, an encrypted PDF file was opened with a password "password".

Encrypted PDF document looks like the following:

How to Password Protect PDF in Java, Figure 1: Opening an Encrypted PDF document Opening an Encrypted PDF document

Encrypt PDF Document using Password Protection

Let's change the owner password of "encrypted.pdf" file which opened in the previous step. The following code helps to achieve this task:

// Change or set the document owner password
SecurityManager securityManager = pdf.getSecurity();
securityManager.removePasswordsAndEncryption();
securityManager.setPassword("secret-key");
JAVA

The first step is to remove the password using [removePasswordsAndEncryption](/java/object-reference/api/com/ironsoftware/ironpdf/security/SecurityManager.html#removePasswordsAndEncryption()) method, and then set a new password using the setPassword method.

Save Password Protected PDF Documents

Finally, save the PDF document with the following line of code:

pdf.saveAs(Paths.get("assets/secured.pdf"));
JAVA

The output file is now opened with "secret-key" password.

How to Password Protect PDF in Java, Figure 2: Newly-encrypted PDF Document Newly-encrypted PDF Document

Edit File Security Settings

Important security options can be set easily with IronPDF in Java using the SecurityOptions permission class. The code below makes the PDF read-only and disallows users to copy, paste, and print, and set passwords for owner and user.

SecurityOptions securityOptions = new SecurityOptions();
securityOptions.setAllowUserCopyPasteContent(false);
securityOptions.setAllowUserAnnotations(false);
securityOptions.setAllowUserPrinting(PdfPrintSecurity.NO_PRINT);
securityOptions.setAllowUserFormData(false);

SecurityManager securityManager = pdf.getSecurity();
securityManager.setSecurityOptions(securityOptions);
JAVA

This will set all the necessary security options of the PDF document. This can be seen in the output below:

How to Password Protect PDF in Java, Figure 3: New PDF Security Settings New PDF Security Settings

Summary

This article explained how to open an existing PDF document and add password protection using IronPDF Library in Java. IronPDF makes it a lot easier to work with PDF files in Java. Whether you want to create a new document or make a PDF viewer, IronPDF helps to achieve this task with a single line of code. IronPDF's Engine is well suited for the Java programming language, as it is fast and memory efficient. With IronPDF, you can set a user password along with the owner password. It provides full protection options along with other features like converting to PDF from other formats and splitting and merging documents.

IronPDF can be used for free in a free trial and can be licensed for commercial use. Its lite package starts from $749. Download download IronPDF and give it a try.

< PREVIOUS
Java PDF Renderer Library (Developer Tutorial)
NEXT >
How to Convert Byte Array to PDF in Java

Ready to get started? Version: 2024.9 just released

Free Maven Download View Licenses >