Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to print PDF file using Java printing API. I understand that if I need to print formats that not supported by printer natively, I need to use 2DGraphics etc.. But if printer supports format natively, so I don't need to use 2DGraphics. I need simply send file to print:

Doc myDoc = new SimpleDoc(stream, myFormat, dset);
...
job.print(myDoc, aset);

So when I print using Java print API I get exception: sun.print.PrintJobFlavorException: invalid flavor But when I print using Adobe Reader all prints FINE. Why so?

share|improve this question
You could use PdfRenderer, I used it and was successful in printing a pdf file. juixe.com/techknow/index.php/2008/01/17/… – likeToCode Aug 20 '12 at 12:44
@likeToCode it buggy. It require jbig2 decoder, but jbig2 decoder is very buggy (free version of it, I don't try not free version (2.0)) – MyTitle Aug 21 '12 at 5:11

1 Answer

I wrote a blog post on ways to print PDF from Java at http://www.jpedal.org/PDFblog/2010/01/printing-pdf-files-from-java/ which you might find useful.

share|improve this answer
The link to your blog post is dead. – yms Sep 11 '12 at 13:59
It is working now – mark stephens Sep 11 '12 at 14:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.