Friends of OpenJDK Today

10 Basic Questions About PDF Files for Java Developers

August 28, 2020

Author(s)

  • Mark Stephens

    Entrepreneur and Java software developer, founder and CEO of IDRsolutions

PDF files are the world's most common file format, defining 70% of the world's documents. But they are also complex and poorly supported by Java.

As I have spent over 20 years working with Java and PDF files, I thought a useful contribution to the excellent new foojay.io (a place for friends of OpenJDK), where you are reading this now, would be a quick guide for Java Developers!

1. What are PDF files?

PDF files are designed to display documents, fast and accurately, on multiple platforms. They do this by storing all the information they need (text, images, fonts) inside a complex binary data structure.

PDF is based on Postscript and you should think of it more as a program than a data dump. The displayed document is what you get when you run the PDF 'program' contained in the PDF file. So you need a program that understands PDF files to display it.

2. Is PDF an open standard?

The PDF file format was created by Adobe but is now an Open ISO standard. There are several versions of the PDF file format (all backwards compatible) with PDF 2.0 being the latest.

3. How can I see what a PDF file really looks like?

If you really want to see what a PDF file really looks like inside... try the RUPS diagnostic viewer from IText.

4. How am I likely to meet PDF files?

Because they are very common, you may well need to store them in a database or repository, edit them, extract data from them, or display them.

5. How should I store them?

Always treat a PDF as a blob. If you treat it as a text structure, you will break the internal reference table.

Also, avoid adding padding at the start or end, as this can make the PDF file unusable.

6. What support does Java provide for PDF files?

Java provides no support for PDF files out of the box.

7. Are there any Java libraries out there?

The good news is that there are lots of active libraries, both open source and commercial, available to work with PDF files.

My personal recommendations would be to look at the following:

Also, I am the founder of IDRsolutions, and we have a range of commercial Java PDF libraries

8. How easy is it to create/edit a PDF directly?

PDF files store data in a complex hybrid binary/text structure, which you would need to parse and process. It is not a file format which you can easily just scrape the data from.

Our strong recommendation is always to use a Java library to work with PDF files. Developers have already spent years solving these complex problems for you.

9. How easy is it to display PDF files?

PDF files need a PDF viewer to display them. If you are building a web application, you can use PDF.js to display PDF files in the browser client side or convert them to another format.

It is a sign of how the Java market has changed that most of our clients in 2000 to 2010 wanted a Java client viewer/applet, while the current trend is to convert PDF to Image or to HTML5/SVG and display in a web browser, with no Java on the client.

10. Can I convert PDF files into another file format?

There are lots of software tools to convert PDF into images, HTML, Word, etc.

The thing to remember is that you will lose a lot of the features of the PDF , i.e., it is rescalable, searchable, can include annotations, notes, video, and sound. PDF also supports non-RGB colourspaces.

Conversion can make it much simpler to display PDF files, but much will be 'lost in translation'.

Conclusion

Java does not have any support for PDF files out of the box.

If you understand how PDF files work and the tools available to work with them, you can find Java a very productive language for working with them.

If you have any comments or suggestions on these points, drop me a message on Twitter @markee174

Author(s)

  • Mark Stephens

    Entrepreneur and Java software developer, founder and CEO of IDRsolutions

Comments (0)

Your email address will not be published. Required fields are marked *

Highlight your code snippets using [code lang="language name"] shortcode. Just insert your code between opening and closing tag: [code lang="java"] code [/code]. Or specify another language.

Save my name, email, and website in this browser for the next time I comment.

Subscribe to foojay updates:

https://foojay.io/feed/
Copied to the clipboard