java 使用 pdf.js 在线查看 pdf 文档

1. 下载对应的 pdf.js 文件:

  推荐地址: 
            https://github.com/mozilla/pdf.js/
            http://mozilla.github.io/pdf.js/

2. 下载完成后打开对应的 viewer.js 文件。

java 使用 pdf.js 在线查看 pdf 文档

可以看到,默认打开的是 compressed.tracemonkey-pldi-09.pd f文件,如果后面我们需要打开我们指定的地址,于是清空默认地址。

java 使用 pdf.js 在线查看 pdf 文档

3. 这样,我们就可以使用传递 file 形参来动态指定打开的 pdf 文件,如:

 http://localhost:8080/mypdf/web/viewer.html?file=123.pdf

Tips:必须加载到服务器访问

4. 现在我们利用 controller 来动态找到磁盘的 pdf 并加载显示:

    @RequestMapping(value = "showViewPDF")
public void showViewPDF() throws IOException { File f = new File("d:/aaa/123.pdf");
getResponse().reset();
getResponse().setContentType("multipart/form-data");
getResponse().setHeader("Content-Disposition", "attachment;fileName=123.pdf");
OutputStream out = getResponse().getOutputStream();
try {
FileUtil.writeToStream(f, out); } catch (IOException e) {
e.printStackTrace();
} finally {
out.flush();
out.close();
}
}

现在访问的地址变为了如下地址:

 http://localhost:8080/mypdf/web/viewer.html?file=http://localhost:8080/mypdf/pdfPageController/showViewPDF

5. 现在我们通过 ID 号显示对应 ID 的文件:

   @RequestMapping(value = "showViewPDF")
public void showViewPDF(String id) throws IOException {
TUploadFileBlfy tUploadFile = pdfPageService.getPDFById(id);  // 这个是根据 ID 号查询数据库对应储存文件的路径
File f = new File(tUploadFile.getFilePath());  // tUploadFile.getFilePath();  这是获得对应 ID 文件的路径
getResponse().reset();
getResponse().setContentType("multipart/form-data");
getResponse().setHeader("Content-Disposition", "attachment;fileName=" + tUploadFile.getFileName());  // 获得对应文件名
OutputStream out = getResponse().getOutputStream();
try {
FileUtil.writeToStream(f, out); } catch (IOException e) {
e.printStackTrace();
} finally {
out.flush();
out.close();
}
}

于是,现在请求的地址变为了这样:

 http://localhost:8080/mypdf/web/viewer.html?file=http://localhost:8080/mypdf/pdfPageController/showViewPDF?id%3d402881d35dcb410f015dcb455cfc0001
  id 后面的参数详细介绍:
    %3d:这是等号(=)的转义字符;
    402881d35dcb410f015dcb455cfc0001:这是该文件的 UUID 号码,唯一标识符;

好了,大概就是这样了,希望能帮助到大家。

上一篇:nginx+php-fpm的socket配置小结


下一篇:为什么ArrayList、LinkedList线程不安全,Vector线程安全