Home > Software design >  How to print a PDF File using native JAVA (or open and print)
How to print a PDF File using native JAVA (or open and print)

Time:11-01

I created a invoice billing software using itextpdf 5. Is there any way to print the generated PDF using java?

CodePudding user response:

The easiest way is using Desktop.print(File).

  • Related