Mark Stephens Mark has been working with Java and PDF since 1999 and is a big NetBeans fan. He enjoys speaking at conferences. He has an MA in Medieval History and a passion for reading.

How to view PDF metadata in Java (Tutorial)

1 min read

jpedal

How to view pdf metadata using Java (PDF logo)
As someone who works with PDFs, it is not straightforward to view PDF metadata since it is not directly supported by Java. This tutorial shows you how to check and extract metadata from a PDF file in simple steps using the JPedal Java PDF library.

How to find a PDF file page count

  1. Add JPedal to your class or module path. (download the trial jar).
  2. Create a File handle, InputStream or URL pointing to the PDF file
  3. Include a password if file password protected
  4. Open the PDF file
  5. Read the page count
  6. Close the PDF file

and the Java code to get a page count…

You can try print out the result to see if it’s working:

How to access a PDF file page size and rotation

  1. Add JPedal to your class or module path. (download the trial jar).
  2. Create a File handle, InputStream or URL pointing to the PDF file
  3. Include a password if file password protected
  4. Open the PDF file
  5. Read the page size and rotation
  6. Close the PDF file

and the Java code to read PDF page size and rotation…

You can try print out the result to see if it’s working: (getPageDimensions returns a float[] with 5 values:- x,y,w,h, pageRotation)

How to access PDF Document properties

  1. Add JPedal to your class or module path. (download the trial jar).
  2. Create a File handle, InputStream or URL pointing to the PDF file
  3. Include a password if file password protected
  4. Open the PDF file
  5. Access the properties
  6. Close the PDF file

and the Java code to read PDF Document properties…

You can try print out the result to see if it’s working:

How to detect if embedded fonts used in PDF

  1. Add JPedal to your class or module path. (download the trial jar).
  2. Create a File handle, InputStream or URL pointing to the PDF file
  3. Include a password if file password protected
  4. Open the PDF file
  5. Query the PDF file status
  6. Close the PDF file

and the Java code to detect embedded fonts…

Again, you can try print out the result to see if it’s working:

In this article I showed you how you can view pdf metadata using Java.



The JPedal PDF library allows you to solve these problems in Java


Why do developers choose JPedal over alternatives?

  1. Actively developed commercial library with full support and no third party dependencies.
  2. Simple licensing options and source code access for OEM users.
  3. Process PDF files up to 3x faster than alternative Java PDF libraries.

Mark Stephens Mark has been working with Java and PDF since 1999 and is a big NetBeans fan. He enjoys speaking at conferences. He has an MA in Medieval History and a passion for reading.