Some test text!
Core / Guides
Welcome to Apryse. Java for the Apryse SDK is supported on both Linux and Windows. To get started, choose your preferred platform from the tabs below.
This guide will help you run Apryse samples and integrate a free trial of the Apryse SDK into Java applications on Linux. Your free trial includes unlimited trial usage and support from solution engineers.
Extract the folder from the .zip file.
Get your Apryse trial key.
Run a specific sample
JAVA
folder in a sample project, for example /Samples/AddImageTest/JAVA
and run the sample with./RunTest.sh
Run all samples
/Samples
and run./runall_java.sh
The tests will run one by one.
/Samples/TestFiles/Output
Manual Integration
Maven Integration
Gradle Integration
This section will show you how to use our SDK to create a simple Apryse "Hello World!" application. It will create a document with one blank page and save it as a linearized PDF in its running directory.
Navigate to the /Samples
directory of the Apryse SDK and create a directory called myApp
if it does not exist already. This guide will assume your project is named myApp.
Enter your myApp
directory and create a JAVA
directory for organization. Then create a myApp.java
file. Open this file in your favorite text editor and paste:
import java.io.File;
import java.io.IOException;
import com.pdftron.common.PDFNetException;
import com.pdftron.pdf.*;
import com.pdftron.sdf.SDFDoc;
import com.pdftron.sdf.ObjSet;
import com.pdftron.sdf.Obj;
public class myApp
{
public static void main(String[] args)
{
PDFNet.initialize(); // PDFNet must be initialized before accessing any Apryse API
try
{
PDFDoc doc = new PDFDoc();
Page page = doc.pageCreate(); // Start a new page
doc.pagePushBack(page); // Add the page to the document
doc.save("output.pdf", SDFDoc.SaveMode.LINEARIZED, null); // Save the document as a linearized PDF
}
catch(PDFNetException e)
{
e.printStackTrace();
System.out.println(e);
}
System.out.println("Hello World!");
}
}
Navigate back to your myApp project folder and compile your application using our PDFNet library:
javac -cp .:../../../Lib/PDFNet.jar myApp.java
Run the project by executing:
java -Djava.library.path=../../../Lib -classpath .:../../../Lib/PDFNet.jar myApp
If all goes well, your terminal should output:
PDFNet is running in demo mode.
Permission: write
Hello World!
Check the output.pdf
that the program output in the same directory. It should be a PDF with one blank page.
Check the troubleshooting page if you run into any issues going through this document.
Get the answers you need: Chat with us