你好,看到你提问iReport在Jsp中不显示pdf,我也遇到同样问题,请您说说怎么解决的啊

 我来答
manbuyu2012
2014-04-10
知道答主
回答量:7
采纳率:0%
帮助的人:7991
展开全部
<%
String title= "我的保镖";
File reportFile = new File(application.getRealPath("/report/kpmx.jasper"));
String path=application.getRealPath("/report/");
Map parameters = new HashMap();
parameters.put("title", title);
parameters.put("SUBREPORT_DIR", path+"\\");
try {
Connection conn = null;

try{
conn = xxx.getConnection();
}catch (SQLException e) {
e.printStackTrace();
}
byte[] bytes =JasperRunManager.runReportToPdf( reportFile.getPath(), parameters, conn);
response.setContentType("application/pdf");
response.setContentLength(bytes.length);
ServletOutputStream ouputStream = response.getOutputStream();
ouputStream.write(bytes, 0, bytes.length);
ouputStream.flush();
ouputStream.close();
conn.close();
} catch (JRException jre) {
System.out.println("JRException:" + jre.getMessage());
} catch (Exception e) {
System.out.println("Exception:" + e.getMessage());
}
%>

上面代码保存成jsp,访问就是了,注意改下里面对应的参数
来自:求助得到的回答
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友a4fc693
2013-12-25
知道答主
回答量:8
采纳率:0%
帮助的人:2.1万
展开全部
具体什么错误?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式