博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【JSP】如何在jsp中打开pdf文件。
阅读量:4957 次
发布时间:2019-06-12

本文共 1673 字,大约阅读时间需要 5 分钟。

// java代码 public ActionForward getSoaPdf(ActionMapping mapping, ActionForm form,                                HttpServletRequest request, HttpServletResponse response) throws IOException {
String path = request.getParameter("path"); if (IsPdf(path)) {
response.setContentType("application/pdf"); } else {
response.setContentType("application/vnd.ms-excel"); } ServletOutputStream out = null; try {
out = response.getOutputStream(); } catch (IOException e) {
e.printStackTrace(); } //加上下面这句则可以在浏览器外打开,或者保存 //resp.setHeader("Content-disposition", "attachment;filename=sample.pdf"); File pdf = null; BufferedInputStream buf = null; try {
pdf = new File("G:\\Soa_Pdf\\" + path); response.setContentLength((int) pdf.length()); FileInputStream input = new FileInputStream(pdf); buf = new BufferedInputStream(input); int readBytes = 0; while ((readBytes = buf.read()) != -1) {
out.write(readBytes); } } catch (IOException e) {
e.printStackTrace(); } finally {
if (out != null) out.close(); if (buf != null) buf.close(); } return null; }
// js代码 function openDetailPdf(path, cnTitle, enTitle) {
art.dialog.open('operatorquery.do?method=getSoaPdf&path=' + path, {
title: cnTitle + " " + enTitle, width: 1100, // height: 450, height: 580, left: '133px', top: '10px', fixed: true, resize: false, padding: '5px 5px', }); } 显示效果:

 

转载于:https://www.cnblogs.com/CESC4/p/8126232.html

你可能感兴趣的文章
c#中从string数组转换到int数组
查看>>
数据模型(LP32 ILP32 LP64 LLP64 ILP64 )
查看>>
java小技巧
查看>>
POJ 3204 Ikki's Story I - Road Reconstruction
查看>>
【BZOJ】2959: 长跑(lct+缩点)(暂时弃坑)
查看>>
iOS 加载图片选择imageNamed 方法还是 imageWithContentsOfFile?
查看>>
toad for oracle中文显示乱码
查看>>
SQL中Group By的使用
查看>>
错误org/aopalliance/intercept/MethodInterceptor解决方法
查看>>
Pylint在项目中的使用
查看>>
使用nginx做反向代理和负载均衡效果图
查看>>
access remote libvirtd
查看>>
(4) Orchard 开发之 Page 的信息存在哪?
查看>>
ASP.NET中 GridView(网格视图)的使用前台绑定
查看>>
Haskell学习-高阶函数
查看>>
深入了解Oracle ASM(二):ASM File number 1 文件目录
查看>>
Boosting(提升方法)之AdaBoost
查看>>
链接元素<a>
查看>>
Binding object to winForm controller through VS2010 Designer(通过VS2010设计器将对象绑定到winForm控件上)...
查看>>
Spring Boot实战笔记(二)-- Spring常用配置(Scope、Spring EL和资源调用)
查看>>