Quickstart for Adobe Document Generation API (Java)
To get started using Adobe Document Generation API, let's walk through a simple scenario - using a Word document as a template for dynamic receipt generation in PDF. In this guide, we will walk you through the complete process for creating a program that will accomplish this task.
Prerequisites
To complete this guide, you will need:
- Java - Java 11 or higher is required.
- Maven
- An Adobe ID. If you do not have one, the credential setup will walk you through creating one.
- A way to edit code. No specific editor is required for this guide.
Step One: Getting credentials
1) To begin, open your browser to https://acrobatservices.adobe.com/dc-integration-creation-app-cdn/main.html?api=document-generation-api. If you are not already logged in to Adobe.com, you will need to sign in or create a new user. Using a personal email account is recommend and not a federated ID.
2) After registering or logging in, you will then be asked to name your new credentials. Use the name, "New Project".
3) Change the "Choose language" setting to "Java".
4) Also note the checkbox by, "Create personalized code sample." This will include a large set of samples along with your credentials. These can be helpful for learning more later.
5) Click the checkbox saying you agree to the developer terms and then click "Create credentials."
6) After your credentials are created, they are automatically downloaded:
Step Two: Setting up the project
1) In your Downloads folder, find the ZIP file with your credentials: PDFServicesSDK-JavaSamples.zip. If you unzip that archive, you will find a folder of samples and the pdfservices-api-credentials.json
file.
2) Take the pdfservices-api-credentials.json
file and place it in a new directory.
3) In this directory, create a new file named pom.xml
and copy the following content:
Copied to your clipboard<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"><modelVersion>4.0.0</modelVersion><groupId>com.adobe.documentservices</groupId><artifactId>pdfservices-sdk-documentgeneration-guide</artifactId><version>1</version><name>PDF Services Java SDK Samples</name><properties><project.build.sourceEncoding>UTF-8</project.build.sourceEncoding><maven.compiler.source>11</maven.compiler.source><maven.compiler.target>11</maven.compiler.target><pdfservices.sdk.version>4.1.0</pdfservices.sdk.version></properties><dependencies><dependency><groupId>com.adobe.documentservices</groupId><artifactId>pdfservices-sdk</artifactId><version>${pdfservices.sdk.version}</version></dependency><!-- log4j2 dependency to showcase the use of log4j2 with slf4j API--><!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-log4j12 --><dependency><groupId>org.apache.logging.log4j</groupId><artifactId>log4j-slf4j-impl</artifactId><version>2.21.1</version></dependency></dependencies><build><plugins><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-compiler-plugin</artifactId><version>3.8.0</version><configuration><source>${maven.compiler.source}</source><target>${maven.compiler.target}</target></configuration></plugin><plugin><groupId>org.codehaus.mojo</groupId><artifactId>exec-maven-plugin</artifactId><version>1.5.0</version><executions><execution><goals><goal>java</goal></goals></execution></executions></plugin></plugins></build></project>
This file will define what dependencies we need and how the application will be built.
Our application will take a Word document, receiptTemplate.docx
(downloadable from here), and combine it with data in a JSON file, receipt.json
(downloadable from here), to be sent to the Acrobat Services API and generate a receipt PDF.
4) In your editor, open the directory where you previously copied the credentials, and create a new directory, src/main/java
. In that directory, create GeneratePDF.java
.
Now you're ready to begin coding.
Step Three: Creating the application
1) Let's start by looking at the Word template. If you open the document in Microsoft Word, you'll notice multiple tokens throughout the document (called out by the use of {{
and }}
).
When the Document Generation API is used, these tokens are replaced with the JSON data sent to the API. These tokens support simple replacements, for example, {{Customer.Name}}
will be replaced by a customer's name passed in JSON. You can also have dynamic tables. In the Word template, the table uses invoice items as a way to dynamically render whatever items were ordered. Conditions can also be used to hide or show content as you can see two conditions at the end of the document. Finally, basic math can be also be dynamically applied, as seen in the "Grand Total".
2) Next, let's look at our sample data:
Copied to your clipboard{"author": "Gary Lee","Company": {"Name": "Projected","Address": "19718 Mandrake Way","PhoneNumber": "+1-100000098"},"Invoice": {"Date": "January 15, 2021","Number": 123,"Items": [{"item": "Gloves","description": "Microwave gloves","UnitPrice": 5,"Quantity": 2,"Total": 10},{"item": "Bowls","description": "Microwave bowls","UnitPrice": 10,"Quantity": 2,"Total": 20}]},"Customer": {"Name": "Collins Candy","Address": "315 Dunning Way","PhoneNumber": "+1-200000046","Email": "cc@abcdef.co.dw"},"Tax": 5,"Shipping": 5,"clause": {"overseas": "The shipment might take 5-10 more than informed."},"paymentMethod": "Cash"}
Notice how the tokens in the Word document match up with values in our JSON. While our example will use a hard coded set of data in a file, production applications can get their data from anywhere. Now let's get into our code.
3) We'll begin by including our required dependencies:
Copied to your clipboardimport com.adobe.pdfservices.operation.PDFServices;import com.adobe.pdfservices.operation.PDFServicesMediaType;import com.adobe.pdfservices.operation.PDFServicesResponse;import com.adobe.pdfservices.operation.auth.Credentials;import com.adobe.pdfservices.operation.auth.ServicePrincipalCredentials;import com.adobe.pdfservices.operation.exception.SDKException;import com.adobe.pdfservices.operation.exception.ServiceApiException;import com.adobe.pdfservices.operation.exception.ServiceUsageException;import com.adobe.pdfservices.operation.io.Asset;import com.adobe.pdfservices.operation.io.StreamAsset;import com.adobe.pdfservices.operation.pdfjobs.jobs.DocumentMergeJob;import com.adobe.pdfservices.operation.pdfjobs.params.documentmerge.DocumentMergeParams;import com.adobe.pdfservices.operation.pdfjobs.params.documentmerge.OutputFormat;import com.adobe.pdfservices.operation.pdfjobs.result.DocumentMergeResult;import org.apache.commons.io.IOUtils;import org.json.JSONObject;import org.slf4j.Logger;import org.slf4j.LoggerFactory;import java.io.File;import java.io.IOException;import java.io.InputStream;import java.io.OutputStream;import java.nio.file.Files;import java.nio.file.Path;import java.nio.file.Paths;
4) Now let's define our main class:
Copied to your clipboardpublic class GeneratePDF {private static final Logger LOGGER = LoggerFactory.getLogger(GeneratePDF.class);public static void main(String[] args) {}}
These lines are hard coded but in a real application would typically be dynamic.
5) Set the environment variables PDF_SERVICES_CLIENT_ID
and PDF_SERVICES_CLIENT_SECRET
by running the following commands and replacing placeholders YOUR CLIENT ID
and YOUR CLIENT SECRET
with the credentials present in pdfservices-api-credentials.json
file:
Windows:
set PDF_SERVICES_CLIENT_ID=<YOUR CLIENT ID>
set PDF_SERVICES_CLIENT_SECRET=<YOUR CLIENT SECRET>
MacOS/Linux:
export PDF_SERVICES_CLIENT_ID=<YOUR CLIENT ID>
export PDF_SERVICES_CLIENT_SECRET=<YOUR CLIENT SECRET>
6) Next, we can create our credentials and use them to create a PDF Services instance
Copied to your clipboard// Initial setup, create credentials instanceCredentials credentials = new ServicePrincipalCredentials(System.getenv("PDF_SERVICES_CLIENT_ID"),System.getenv("PDF_SERVICES_CLIENT_SECRET"));// Create PDF Services instancePDFServices pdfServices = new PDFServices(credentials);
7) Now, let's upload the asset and create JSON data for merge:
Copied to your clipboardAsset asset = pdfServices.upload(inputStream, PDFServicesMediaType.DOCX.getMediaType());Path jsonPath = Paths.get("src/main/resources/receipt.json");String json = new String(Files.readAllBytes(jsonPath));JSONObject jsonDataForMerge = new JSONObject(json);
8) Now, let's create the parameters and the job:
Copied to your clipboard// Create parameters for the jobDocumentMergeParams documentMergeParams = DocumentMergeParams.documentMergeParamsBuilder().withJsonDataForMerge(jsonDataForMerge).withOutputFormat(OutputFormat.PDF).build();// Creates a new job instanceDocumentMergeJob documentMergeJob = new DocumentMergeJob(asset, documentMergeParams);
This set of code defines what we're doing (a document merge operation, the SDK's way of describing Document Generation), points to our local JSON file and specifies the output is a PDF. It also points to the Word file used as a template.
9) The next code block submits the job and gets the job result:
Copied to your clipboard// Submit the job and get the job resultString location = pdfServices.submit(documentMergeJob);PDFServicesResponse<DocumentMergeResult> pdfServicesResponse = pdfServices.getJobResult(location, DocumentMergeResult.class);// Get content from the resulting asset(s)Asset resultAsset = pdfServicesResponse.getResult().getAsset();StreamAsset streamAsset = pdfServices.getContent(resultAsset);
10) The next code block saves the result at the specified location:
Copied to your clipboard// Creating an output stream and copying stream asset's content to itOutputStream outputStream = Files.newOutputStream(new File("output/generatePDFOutput").toPath());IOUtils.copy(streamAsset.getInputStream(), outputStream);
This code runs the Document Generation process and then stores the resulting PDF document to the file system.
Here's the complete application (src/main/java/GeneratePDF.java
):
Copied to your clipboardimport com.adobe.pdfservices.operation.PDFServices;import com.adobe.pdfservices.operation.PDFServicesMediaType;import com.adobe.pdfservices.operation.PDFServicesResponse;import com.adobe.pdfservices.operation.auth.Credentials;import com.adobe.pdfservices.operation.auth.ServicePrincipalCredentials;import com.adobe.pdfservices.operation.exception.SDKException;import com.adobe.pdfservices.operation.exception.ServiceApiException;import com.adobe.pdfservices.operation.exception.ServiceUsageException;import com.adobe.pdfservices.operation.io.Asset;import com.adobe.pdfservices.operation.io.StreamAsset;import com.adobe.pdfservices.operation.pdfjobs.jobs.DocumentMergeJob;import com.adobe.pdfservices.operation.pdfjobs.params.documentmerge.DocumentMergeParams;import com.adobe.pdfservices.operation.pdfjobs.params.documentmerge.OutputFormat;import com.adobe.pdfservices.operation.pdfjobs.result.DocumentMergeResult;import org.apache.commons.io.IOUtils;import org.json.JSONObject;import org.slf4j.Logger;import org.slf4j.LoggerFactory;import java.io.File;import java.io.IOException;import java.io.InputStream;import java.io.OutputStream;import java.nio.file.Files;import java.nio.file.Path;import java.nio.file.Paths;public class GeneratePDF {private static final Logger LOGGER = LoggerFactory.getLogger(GeneratePDF.class);public static void main(String[] args) {try (InputStream inputStream = Files.newInputStream(new File("src/main/resources/receiptTemplate.docx").toPath())) {// Initial setup, create credentials instanceCredentials credentials = new ServicePrincipalCredentials(System.getenv("PDF_SERVICES_CLIENT_ID"),System.getenv("PDF_SERVICES_CLIENT_SECRET"));// Creates a PDF Services instancePDFServices pdfServices = new PDFServices(credentials);// Creates an asset(s) from source file(s) and uploadAsset asset = pdfServices.upload(inputStream, PDFServicesMediaType.DOCX.getMediaType());// Setup input data for the document merge processPath jsonPath = Paths.get("src/main/resources/receipt.json");String json = new String(Files.readAllBytes(jsonPath));JSONObject jsonDataForMerge = new JSONObject(json);// Create parameters for the jobDocumentMergeParams documentMergeParams = DocumentMergeParams.documentMergeParamsBuilder().withJsonDataForMerge(jsonDataForMerge).withOutputFormat(OutputFormat.PDF).build();// Creates a new job instanceDocumentMergeJob documentMergeJob = new DocumentMergeJob(asset, documentMergeParams);// Submit the job and gets the job resultString location = pdfServices.submit(documentMergeJob);PDFServicesResponse<DocumentMergeResult> pdfServicesResponse = pdfServices.getJobResult(location, DocumentMergeResult.class);// Get content from the resulting asset(s)Asset resultAsset = pdfServicesResponse.getResult().getAsset();StreamAsset streamAsset = pdfServices.getContent(resultAsset);// Creates an output stream and copy stream asset's content to itFiles.createDirectories(Paths.get("output/"));OutputStream outputStream = Files.newOutputStream(new File("output/generatePDFOutput.pdf").toPath());LOGGER.info("Saving asset at output/generatePDFOutput.pdf");IOUtils.copy(streamAsset.getInputStream(), outputStream);outputStream.close();} catch (ServiceApiException | IOException | SDKException | ServiceUsageException e) {LOGGER.error("Exception encountered while executing operation", e);}}}
Next Steps
Now that you've successfully performed your first operation, review the documentation for many other examples and reach out on our forums with any questions. Also remember the samples you downloaded while creating your credentials also have many demos.