ireport 图表(比如柱状图,饼装图)如何显示在MyEclipse的jsp页面
3个回答
展开全部
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Insert title here</title>
</head>
<body>
<%@ page contentType="text/html;charset=GB2312"%>
<%@ page import="net.sf.jasperreports.engine.*"%>
<%@ page import="java.util.*"%>
<%@ page import="java.io.*"%>
<%@ page import="java.sql.*"%>
<%@page import="com.xy.Conn_Utils"%>
<%
File reportFile = new File(this.getServletContext().getRealPath(
"/report/chart.jasper"));//调用你通过ireport编译好的jasper文件即可。
Map parameters = new HashMap();
//sql在这里传过去,这里的参数与ireport中的parameter定义的应该一样
//这里是传的参数,根据自己的需要传动态的参数即可
parameters.put("childcode", "521");
try {
//执行报表程序
JasperRunManager.runReportToHtmlFile(reportFile.getPath(),
parameters, Conn_Utils.getConn());
response.sendRedirect("report/chart.html");
} catch (Exception e) {
System.out.println(e.getMessage());
} finally {
try {
Conn_Utils.getConn().close();
} catch (Exception e) {
System.out.println(e.getMessage());
}
}
out.clear();
out = pageContext.pushBody();
%>
</body>
</html>
上面程序已经验证。成功显示在myeclipse中的jsp页面中。
<html>
<head>
<title>Insert title here</title>
</head>
<body>
<%@ page contentType="text/html;charset=GB2312"%>
<%@ page import="net.sf.jasperreports.engine.*"%>
<%@ page import="java.util.*"%>
<%@ page import="java.io.*"%>
<%@ page import="java.sql.*"%>
<%@page import="com.xy.Conn_Utils"%>
<%
File reportFile = new File(this.getServletContext().getRealPath(
"/report/chart.jasper"));//调用你通过ireport编译好的jasper文件即可。
Map parameters = new HashMap();
//sql在这里传过去,这里的参数与ireport中的parameter定义的应该一样
//这里是传的参数,根据自己的需要传动态的参数即可
parameters.put("childcode", "521");
try {
//执行报表程序
JasperRunManager.runReportToHtmlFile(reportFile.getPath(),
parameters, Conn_Utils.getConn());
response.sendRedirect("report/chart.html");
} catch (Exception e) {
System.out.println(e.getMessage());
} finally {
try {
Conn_Utils.getConn().close();
} catch (Exception e) {
System.out.println(e.getMessage());
}
}
out.clear();
out = pageContext.pushBody();
%>
</body>
</html>
上面程序已经验证。成功显示在myeclipse中的jsp页面中。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用jfreechart,我们只要完成数据的筛选,图像的完成用jfreechart来完成就可以
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询