How to Password Protect PDF in Java
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
IroqPDF 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:
- 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.
- 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.
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>
<dependency> <groupId>com.ironsoftware</groupId> <artifactId>ironpdf</artifactId> <version>YOUR_VERSION_HERE</version> </dependency>
XMLSlf4j 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>
<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;
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;
Now, in the main method, enter your license key using the IronPDF setLicenseKey
method.
// Set your IronPDF license key
License.setLicenseKey("Your license key");
// Set your IronPDF license key
License.setLicenseKey("Your license key");
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");
// Load an encrypted PDF file using its password
PdfDocument pdf = PdfDocument.fromFile(Paths.get("encrypted.pdf"), "secretPassword");
In the above code snippet, an encrypted PDF file is opened with the password "password".
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");
// 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");
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"));
// Save the secured PDF document
pdf.saveAs(Paths.get("assets/secured.pdf"));
The output file is now opened with the "secret-key" password.
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);
// 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);
This will set all the necessary security options for the PDF document.
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 $749. Download IronPDF and give it a try.
Frequently Asked Questions
What is the Java library used for working with PDFs?
IronPDF is a Java library for working with PDF documents that offers features for generating and manipulating PDFs, including adding content and securing documents with password protection.
What are the prerequisites to use a PDF library in a Java project?
To use IronPDF in a Java project, you need the Java Development Kit (JDK), Maven, and the IronPDF for Java library added as a dependency in your Maven project's pom.xml file.
How do you import classes from a PDF library in Java?
You can import IronPDF classes into your Java code by adding import statements such as 'import com.ironsoftware.ironpdf.PdfDocument;' at the top of your Java file.
How do you open an encrypted PDF document using a Java library?
An encrypted PDF document can be opened using IronPDF by calling the PdfDocument.fromFile method with the file path and the password.
How can you change the owner password of a PDF using a PDF library?
To change the owner password of a PDF, use the SecurityManager to remove existing passwords and then set a new password using the setPassword method.
What is the method to save a password-protected PDF document in Java?
Once you set the password, the PDF document can be saved using the saveAs method with the desired file path.
How do you set security options for a PDF in a Java library?
Security options can be set in IronPDF using the SecurityOptions class, where you can configure settings such as disallowing user actions like printing or copying.
Can a Java PDF library be used for free?
IronPDF can be used for free during a trial period, and licenses are available for commercial use.