JavaWeb:在浏览器预览PDF的方法,超级简单

用PDFjs预览pdf文件,简单实用


PDF.js是一款基于HTML5建立的PDF阅读器,兼容大部分主流的浏览器,使用起来,也异常的暴力简单(主要是因为看不懂源码,只知道在使用时加个参数就好了)。

使用的步骤:
1.建立一个web工程,把PDF.js丢进去
PDF.js 可以在官网上下载:http://mozilla.github.io/pdf.js/
也可以在我的项目中复制出来
JavaWeb:在浏览器预览PDF的方法,超级简单_第1张图片

2.在HTML文件下编写JavaScript代码:
JavaWeb:在浏览器预览PDF的方法,超级简单_第2张图片




    
    Title






3.演示:
JavaWeb:在浏览器预览PDF的方法,超级简单_第3张图片

4.PDFjs文件目录:
├── LICENSE
├── build/
│   ├── pdf.js                             - display layer
│   └── pdf.worker.js                      - core layer
└── web/
    ├── cmaps/                             - character maps(required by core)
    ├── compatibility.js                   - polyfills for missing features
    ├── compressed.tracemonkey-pldi-09.pdf - test pdf
    ├── debugger.js                        - helpful pdf debugging features
    ├── images/                            - images for the viewer and annotation icons
    ├── l10n.js                            - localization
    ├── locale/                            - translation files
    ├── viewer.css                         - viewer style sheet
    ├── viewer.html                        - viewer html
    └── viewer.js                          - viewer layer
如果不去改源码的话,我们只需要用到viewer.html一个文件

5.源码下载地址:
我用是idea创建的项目,idea可以直接导入,如果是eclipse,自己建个web项目,然后把web下文件复制下哈
http://download.csdn.net/detail/u014701246/9901064

你可能感兴趣的:(web前端)