|
I'm looking for a Java library that could help me read pdf files. Any suggestions? Thanks. |
|
I haven't personally had the need to read PDFs (always just writing them), but if I had to I'd probably try Apache PDFBox. |
|
There's the venerable IText, and it's .NET port (ie IText Sharp) Isn't IText more suited for writing PDF files rather than reading them? Yup, I think most pdf lib concentrate on writing, but it wouldn't be complete without reading. For IText it has the PdfReader class for that. http://www.1t3xt.info/api/com/lowagie/text/pdf/PdfReader.html |
|
I am not sure what you mean exactly by "reading PDF document". IText can load PDF documents and do some manipulation on the documents. But, have you looked at Qoppa Java PDF library products? It's a suite of java libraries to create, manipulate and also render PDF documents. So if by reading you meant render, you will find libraries to convert PDF documents to images, print them or display them in visual components. |