pdf文档的下载与查看 jsp页面

  1. 文件下载

  2. Controller层代码

  3.  @RequestMapping("/download")
  4. public static ResponseEntity(Byte[])  downloadPdf(HttpServletRequest request,HttpServletResponse response) throws Exception{
  5.   String str = request.getParameter("str“)//获取下载请求传来的参数
  6. .......................................................
  7. String filePath=PropertyUtil.getProperty("path")//定义一个配置文件property,对应写一个propertyUti类来获取配置中的文件路径

  8. //发送消息头,头文件
  9. response.setCharacterEncoding("utf-8");
  10. response.setContentType("application/pdf");
  11. response.setHeader(("Content-Disposition",
            "attachment;fileName=fapiao.pdf");/************这一块都是文件消息头格式设置*/
  12. InputStream input = null;//字节流读取文件对象
  13. OutputStream os = null;//字节流输出文件对象
  14. try{
  15.    input = new InputStream(new File(filePath));//将文件以字节流的方式读取出来
  16. os=response.getOutputStream();//响应输出流对象
  17.    byte[] b = new byte[2048]
  18.   int length;
  19. while(length=input.read(b)>0){
  20. os.write(b,0,length);//循环读取,b大小,length长度的字节文件;从0开始读取,知道文件读取完毕
  21. }
  22. os.flush();//这个一定要加上

  23.     } catch (FileNotFoundException e) {
  24.         e.printStackTrace();
  25.     } catch (IOException e) {
  26.         e.printStackTrace();
  27.     }finally{
  28.         if(os!=null){
  29.         os.close();
  30.         os=null;
  31.         }
  32.         if(inputStream!=null){
  33.         inputStream.close();
  34.         inputStream=null;
  35.         }
  36.     }
  37.     return null;
  38.     }

    jsp页面pdf 文档显示

Controller层代码  前端可以使用一个查看按钮绑定一个viewUrl的请求,通过这个查看组件来显示文档内容在JSP页面


   @RequestMapping("viewUrl")

  1. public static ResponseEntity(byte[])  downloadPdf(HttpServletRequest request,HttpServletResponse response) throws Exception{
  2.   String str = request.getParameter("str“)//获取下载请求传来的参数
  3. .......................................................
  4. String filePath=PropertyUtil.getProperty("path")//定义一个配置文件property,对应写一个propertyUti类来获取配置中的文件路径
  5. /********这里一般会通过path以及参数信息然后调用service层从数据库中查询到对应的文件路径filePath*****************/
  6. //发送消息头,头文件
  7. response.setContentType("application/pdf");/***********这个关键点*/

  8. InputStream input = null;//字节流读取文件对象
  9. OutputStream os = null;//字节流输出文件对象
  10. try{
  11.    input = new InputStream(new File(filePath));//将文件以字节流的方式读取出来
  12. os=response.getOutputStream();//响应输出流对象,发回jsp页面
  13.    byte[] b = new byte[2048]
  14.   int length;
  15. while(length=input.read(b)>0){
  16. os.write(b,0,length);//循环读取,b大小,length长度的字节文件;从0开始读取,知道文件读取完毕
  17. }
  18. os.flush();//这个一定要加上

  19.     } catch (FileNotFoundException e) {
  20.         e.printStackTrace();
  21.     } catch (IOException e) {
  22.         e.printStackTrace();
  23.     }finally{
  24.         if(os!=null){
  25.         os.close();
  26.         os=null;
  27.         }
  28.         if(inputStream!=null){
  29.         inputStream.close();
  30.         inputStream=null;
  31.         }
  32.     }
  33.     return null;
  34.     }

     jsp文件查看pdf文档方法2通过html标签的方式三种标签:

 注意 IE浏览器 object标签 data ,src 的路径动态传输时 引号问题

以下是一个jsp页面:

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>

<!DOCTYPE jsp PUBLIC "-//W3C//DTD html 4.01 Transitional//EN" "http://www.w3.org/TR/jsp4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

<jsp:include page="${base}/jsp/import.jsp" flush="true" />//导入的公共js文件部分

<title>沪友电子发票综合服务平台</title>
</head>
<body>

    <jsp:include page="${base}/jsp/top.jsp" flush="true" />//公共header部分

    <section
        style="text-align:center; border: 1px solid green;width:1000;height:800;margin: 5px auto;font-size: 13px;display: block;">
    <h1>发票样票</h1>
    <object
        classid="clsid:CA8A9780-280D-11CF-A24D-444553540000" width="990"  data=

'<%=request.getContextPath()%>/<%=session.getAttribute("downloadUrl")%>'>//data属性也可以,和src属性一样

        height="700" border="0" top="-10" name="pdf">

        <param name="src"  value='<%=request.getContextPath()%>/<%=session.getAttribute("downloadUrl")%>'>//后台通过session绑定文件URL

            <embed id="embed_PDF" src ='<%=request.getContextPath()%>/<%=session.getAttribute("downloadUrl")%>' width="990"
        height="700">
    </object>

<iframe id="myIframe" src="test.pdf "  frameBorder=0 marginwidth=0 marginheight=0 scrolling=no width="100%" οnlοad="iframeFitHeight(this)"> </iframe>

</section>

    <footer> <jsp:include page="${base}/jsp/foot.jsp" flush="true" />//公共页脚部分,注意导入公共部分绝对路径的写法

    </footer>
</body>
</html>


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值