views:

798

answers:

3

I'm trying to display already created PDF in a browser without having Acrobat Reader installed, using a Java Applet, not Flash (there's http://stackoverflow.com/questions/785492/open-source-flash-pdf-reader-viewer for that).

This topic is simlar to Java PDF viewer with FDF

JPedal: http://www.jpedal.org/open_source_pdf_viewer_download.php Doesn't work in browswer, only Swing

Pdf Renderer https://pdf-renderer.dev.java.net/ Only application, can be converted to run in browser?

I found an attemp of trying to display pdf-renderer in a browser: http://www.randelshofer.ch/embedpdf/

Multivalent http://multivalent.sourceforge.net/

Ice PDF http://www.icepdf.org/

Please update with Comments.

+1  A: 

There is an Apache project for PDF http://pdfbox.apache.org/.

But I don't know if it can be run in a browser.

Pierre
PDFBox is for creating pdf, not displaying. Are you sure you can display pdf with that?
volothamp
We're using PDFBox for post-processing, but it does have classes for graphically displaying PDFs (org.apache.pdfbox.pdfviewer package)
rjohnston
+1  A: 

PdfRenderer

render PDFs to PNGs in a server-side web application

So it can be used in web-application.

Bozho
Already in the list...
volothamp
yes, but I answered your question whether it can be used for web applications.
Bozho
This is a community wiki, not a question...
volothamp
A: 

JPedal runs in a broswer and there is a JavaFX version as well.

mark stephens