IRONSOFTWAREHOME
USING IRONPDF FOR JAVA

How to Password Protect PDF in Java

Curtis Chau
Curtis Chau
Updated: August 1, 2026

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

IronPDF - Java PDF Library

IronPDF Java PDF Library 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 using password protection features in IronPDF.

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>ironpdf</artifactId>
        <version>YOUR_VERSION_HERE</version>
    </dependency>
    XML
  4. Slf4j Dependency: Add the 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 set up your Java program with password protection capability for PDFs, you are ready to use IronPDF to protect a PDF file with password protection.

Important Steps Before Writing Code

First, import the necessary IronPDF classes into your Java code. Add the following code at the top of the "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.

// Set your IronPDF license key
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":

// Load an encrypted PDF file using its password
PdfDocument pdf = PdfDocument.fromFile(Paths.get("encrypted.pdf"), "secretPassword");
Java

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

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 the "encrypted.pdf" file, which was opened in the previous step. The following code helps to achieve this task:

// Change or set the document owner password
SecurityManager securityManager = pdf.getSecurity();
// Remove existing passwords and encryption from the document
securityManager.removePasswordsAndEncryption();
// Set a new password for the document
securityManager.setPassword("secret-key");
Java

The first step is to remove the password using the 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:

// Save the secured PDF document
pdf.saveAs(Paths.get("assets/secured.pdf"));
Java

The output file is now opened with the "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 class. The code below makes the PDF read-only and disallows users from copying, pasting, and printing, and sets passwords for the owner and user.

// Configure security options for the PDF document
SecurityOptions securityOptions = new SecurityOptions();
securityOptions.setAllowUserCopyPasteContent(false);
securityOptions.setAllowUserAnnotations(false);
securityOptions.setAllowUserPrinting(PdfPrintSecurity.NO_PRINT);
securityOptions.setAllowUserFormData(false);

SecurityManager securityManager = pdf.getSecurity();
// Apply the specified security options to the PDF
securityManager.setSecurityOptions(securityOptions);
Java

This will set all the necessary security options for the PDF document.

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 the IronPDF Library for Java 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 with IronPDF, splitting documents with IronPDF, and merging documents with IronPDF.

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

Curtis Chau
Technical Writer

Curtis Chau holds a Bachelor’s degree in Computer Science (Carleton University) and specializes in front-end development with expertise in Node.js, TypeScript, JavaScript, and React. Passionate about crafting intuitive and aesthetically pleasing user interfaces, Curtis enjoys working with modern frameworks and creating well-structured, visually appealing manuals.

...
Read More

Related Articles

Key in blue circle

Get your free 30-day Trial Key instantly.

bullet_checkedNo credit card or account creation required
  • Logo Aetna
  • Logo NASA
  • Logo GE
  • Logo Porsche
  • Logo USDA
  • Logo Qatar
Join Millions of Engineers who’ve tried IronPDF
Book your free Live Demo
Booking Badge related to IronPDF Product Demo

Trusted by Millions of Engineers Worldwide

Iron Software's customer logos
Get Your No-Obligation Consult
Complete the form below or email sales@ironsoftware.com
Your details will always be kept confidential.
Trusted by Millions of Engineers Worldwide
Iron Software's customer logos
Get your free 30-day Trial Key instantly.
No credit card or account creation required