Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to display the contents of PDF file in a webpage. I don't want the browser to download when the user clicks.

share|improve this question

4 Answers

Use the Google PDF Viewer:

<iframe src="http://docs.google.com/gview?url=URL_TO_YOUR_PDF&embedded=true" style="width:600px; height:500px;" frameborder="0"></iframe>
share|improve this answer
That's a pretty cool trick! – Barry Brown May 8 '10 at 23:42
Indeed :) It is quite useful rather than forcing the user to run the PDF – Mitch Dempsey May 8 '10 at 23:44
One disadvantage though is that the PDF (or another document type) needs to be publicly available. If you want to use this viewer to display user-specific documents that are only available after logging in, this might not be the best solution. You could include some sort of key in the URL though, like &auth=temp-hash, to temporarily allow outside access to your files. – Alec May 9 '10 at 14:16
Yea, but like you said there are ways around that. You can even make a single-use key or something, that once the file is read thru Google, it will expire the link. – Mitch Dempsey May 9 '10 at 18:51

You could embed the adobe acrobat plugin inside your markup. Of course the user must have installed some the appropriate plugin in his browser for this to work. Another possibility is to set your server side script to send proper HTTP headers to instruct the browser embedding the file.

share|improve this answer
1  
The world needs less companies stomping into browsers. – msw May 8 '10 at 22:06
The world needs less browsers too :-) – Darin Dimitrov May 8 '10 at 22:14

You aren't going to be able to control the browser config from the server side. Some people's browsers will be configured to show PDFs inline, and others won't.

What you can do (reading this as a programming question) is to convert the PDF to HTML and deliver the results. Apache PDFBox might prove useful for such an effort.

share|improve this answer

Use an <iframe>.

<iframe src="/url/to/file.pdf" width="500" height="300"></iframe>

Or an <object> when you're actually using XHTML.

<object data="/url/to/file.pdf" type="application/pdf" width="500" height="300">
    alt : <a href="/url/to/file.pdf">file.pdf</a>
</object>

Note that the above is not supported by the ancient browsers, the above construct would let them degrade gracefully to a plain vanilla link.

share|improve this answer

Your Answer

 
discard

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