user195563
user195563

Reputation:

Java EE: Print pdf on the fly

In my web application (Java EE), I would like to print a pdf file generated on the server side on the fly in the client side without opening it. The files could be one or many. Is this possible?

Upvotes: 0

Views: 1381

Answers (2)

mark stephens
mark stephens

Reputation: 3184

You either need an additional Java library or to pass it to native code. There is a blog article with some suggestions at http://www.jpedal.org/PDFblog/2010/01/printing-pdf-files-from-java/

Upvotes: 0

Nicolas Raoul
Nicolas Raoul

Reputation: 60213

I think it is not possible, except if you require clients to install a special application first.

Not just Java EE, it would be the same with any server-side technology.

Upvotes: 3

Related Questions