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 browsers, 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.

link|improve this question
What is your skill level? – Thorbjørn Ravn Andersen Jan 14 '10 at 11:11
Actually you are only exchanging your problem. Now, instead of worring about the fact that your user may or may not have Acrobat Reader installed, you will be worried about the fact that your user may or may not have Java installed. – Kico Lobo Jan 14 '10 at 11:14
We're an enterprise company. We know that everyone have Java installed, since we install our desktops. This is actually a security problem. If you serve pdf files via acrobat plugin, they are exposed and can be saved in anytime. – Luca Molteni Jan 14 '10 at 11:27
I'm a medium skilled developer. – Luca Molteni Jan 14 '10 at 11:28
1  
"This is actually a security problem. If you serve pdf files via acrobat plugin, they are exposed and can be saved in anytime." - using java doesnt solve that problem - as long as they can view the pdf on their machine (i.e., the bytes transfer to their local machine), you will have this problem. If this is a problem, you ought to think about some other form of document distribution, like date based encryption of some sort that deactivates after X number of days. – Chii Jan 14 '10 at 11:40
show 1 more comment
feedback

4 Answers

up vote 1 down vote accepted

PdfRenderer

render PDFs to PNGs in a server-side web application

So it can be used in web-application.

link|improve this answer
Already in the list... – Luca Molteni Jan 14 '10 at 15:40
yes, but I answered your question whether it can be used for web applications. – Bozho Jan 14 '10 at 15:44
This is a community wiki, not a question... – Luca Molteni Jan 14 '10 at 15:45
feedback

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

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

link|improve this answer
PDFBox is for creating pdf, not displaying. Are you sure you can display pdf with that? – Luca Molteni Jan 14 '10 at 10:01
3  
We're using PDFBox for post-processing, but it does have classes for graphically displaying PDFs (org.apache.pdfbox.pdfviewer package) – rjohnston Jan 14 '10 at 11:04
feedback

ICEpdf has an Applet example in the binary bundle ./icepdf/examples/applet/. The build script will create dist directory with all the files needed for deployment. I would recommend you also sign the jars.

ICEpdf has an icepdf-core.jar which is responsible for rendering and there is an icepdf-viewer.jar which contains the viewer reference implementation (RI). The Viewer RI is highly configurable. It can be build from source if you like but it also has several configuration options. For example you can hide save button with the following snippet of code.

SwingController controller = new SwingController();
PropertiesManager properties =
        new PropertiesManager(System.getProperties(),
            ResourceBundle.getBundle(PropertiesManager.DEFAULT_MESSAGE_BUNDLE));
properties.setBoolean(PropertiesManager.PROPERTY_SHOW_UTILITY_SAVE,
        Boolean.FALSE);
SwingViewBuilder factory = new SwingViewBuilder(controller, properties);
getContentPane().setLayout(new BorderLayout());
                    getContentPane().add(factory.buildViewerPanel(), BorderLayout.CENTER);
                    getContentPane().add(factory.buildCompleteMenuBar(), BorderLayout.NORTH);
controller.openDocument(documentURL);
link|improve this answer
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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