Home > Article > Web Front-end > How to display pdf files in jsp
To realize the online preview of pdf, I found a lot of information on the Internet, but it was a bit troublesome to implement. I accidentally found a plug-in that can very conveniently realize the online preview of pdf files.
Plug-in: PDFObject
Download address: https://github.com/pipwerks/PDFObject
Steps:
1. Introduce the plug-in, here you only need pdfobject.js
<script src="/js/pdfobject.js"></script>
2. Create a new div as the pdf display window
<div id="example1"></div>
3. Define the content of the div
<script>PDFObject.embed("/pdf/sample-3pp.pdf", "#example1");</script>
4. Complete
The above is the detailed content of How to display pdf files in jsp. For more information, please follow other related articles on the PHP Chinese website!