首页 > 代码库 > JFreeChart在Struts2中实现3D折线图统计
JFreeChart在Struts2中实现3D折线图统计
在Struts2中,用JFreeChart实现3D折线图统计
前段时间学习了一下JFreeChart,现在来整理一下自己所作的实例。
下面分别用两种方式来实现: 一种是以java应用程序的方式,一种是以web项目程序的方式
需要加入的jar包有: jcommon-1.0.17.jar 、 jfreechart-1.0.14.jar(前两个是JFreeChart中所带的,在下载的JFreeChart的lib目录下) 、 struts2-jfreechart-plugin-2.3.16.3.jar(这个是Struts2所带的,在下载的Struts2的lib目录下)、struts2所常用的9个核心jar包 。 jar包的版本可以有所不同
上述jar包放入到项目的WebRoot/WEB-INF/lib目录下
1、 以java应用程序的方式运行,在web项目中的src目录下新建包: com.jfreechart.test , 在该包中新建类 LineChart3DTest.java
LineChart3DTest.java
package com.jfreechart.test; import java.awt.Color; import java.awt.Font; import java.io.File; import java.io.IOException; import java.util.Random; import org.jfree.chart.ChartFactory; import org.jfree.chart.ChartUtilities; import org.jfree.chart.JFreeChart; import org.jfree.chart.plot.CategoryPlot; import org.jfree.chart.plot.PlotOrientation; import org.jfree.chart.renderer.category.LineAndShapeRenderer; import org.jfree.chart.title.LegendTitle; import org.jfree.chart.title.TextTitle; import org.jfree.data.category.CategoryDataset; import org.jfree.data.category.DefaultCategoryDataset; public class LineChart3DTest { public static void main(String[] args) throws IOException{ //步骤1:创建CategoryDataset对象(准备数据) CategoryDataset dataset = createDataset(); //步骤2:根据Dataset 生成JFreeChart对象,以及做相应的设置 JFreeChart jfreeChart = createChart(dataset); //步骤3:将JFreeChart对象输出到文件 saveAsFile("F:\\LineChart3D.jpg", jfreeChart, 800, 600); } /** * 创建一个dataset,该dataset包含图表要显示的数据 * @return CategoryDataset */ public static CategoryDataset createDataset() { // 图例名称 String[] line = { "文学类", "科技类", "财经类", "娱乐类"}; // 类别 String[] category = { "2008年", "2009年", "2010年", "2012年", "2013年" }; Random random = new Random(); // 实例化Random对象 // 实例化DefaultCategoryDataset对象 DefaultCategoryDataset dataset = new DefaultCategoryDataset(); // 使用循环向数据集合中添加数据 for (int i = 0; i < line.length; i++) { for (int j = 0; j < category.length; j++) { dataset.addValue(100000 + random.nextInt(100000), line[i], category[j]); } } return dataset; } /** * 根据PieDataset创建JFreeChart对象 * @return JFreeChart */ public static JFreeChart createChart(CategoryDataset categoryDataset) { //JFreeChart类是一个制图对象类,先用它来创建一个制图对象chart //ChartFactory类是制图工厂类,用它来为制图对象chart完成实例化 //createLineChart3D()是制图工厂的一个方法,用来创建一个3D的折线图对象 JFreeChart chart = ChartFactory.createLineChart3D( "图书销量统计图", //图表标题 "年份", //X轴标题 "销售数量(本)", //Y轴标题 categoryDataset, //数据集 PlotOrientation.VERTICAL, //绘制方向 true, //是否显示图例 false, //是否采用标准生成器 false //是否支持超链接 ); //通过JFreeChart对象的 setTitle方法,修改统计图表的标题部分(包括修改图表标题内容、字体大小等) chart.setTitle(new TextTitle("图书销量统计图", new Font("黑体", Font.ITALIC , 22))); //调用 JFreeChart对象的 getLegend(int index)方法,取得该图表的指定索引的图例对象,通过 LegendTitle对象来修改统计图表的图例 LegendTitle legend = chart.getLegend(0); //设置图例的字体和字体大小,即位于下方的字的字体和大小 legend.setItemFont(new Font("宋体", Font.BOLD, 14)); // 设置画布背景色 chart.setBackgroundPaint(new Color(192, 228, 106)); //取得折线图的绘图(plot)对象 CategoryPlot plot = chart.getCategoryPlot(); //设置数据区的背景透明度,范围在0.0~1.0间 plot.setBackgroundAlpha(0.5f); // 设置数据区的前景透明度,范围在0.0~1.0间 plot.setForegroundAlpha(0.5f); // 设置横轴字体 plot.getDomainAxis().setLabelFont(new Font("黑体", Font.BOLD, 14)); // 设置坐标轴标尺值字体 plot.getDomainAxis().setTickLabelFont(new Font("宋体", Font.BOLD, 12)); // 设置纵轴字体 plot.getRangeAxis().setLabelFont(new Font("黑体", Font.BOLD, 14)); // 设置绘图区背景色 plot.setBackgroundPaint(Color.WHITE); // 设置水平方向背景线颜色 plot.setRangeGridlinePaint(Color.BLACK); // 设置是否显示水平方向背景线,默认值为true plot.setRangeGridlinesVisible(true); // 设置垂直方向背景线颜色 plot.setDomainGridlinePaint(Color.BLACK); // 设置是否显示垂直方向背景线,默认值为false plot.setDomainGridlinesVisible(true); // 没有数据时显示的消息 plot.setNoDataMessage("没有相关统计数据"); plot.setNoDataMessageFont(new Font("黑体", Font.CENTER_BASELINE, 16)); plot.setNoDataMessagePaint(Color.RED); // 获取折线对象 LineAndShapeRenderer renderer = (LineAndShapeRenderer) plot .getRenderer(); //设置折点处以某种形状凸出 renderer.setShapesVisible(true); renderer.setDrawOutlines(true); renderer.setUseFillPaint(true); renderer.setFillPaint(java.awt.Color.WHITE); //设置显示折点处的数据值 //renderer.setBaseItemLabelGenerator (new StandardCategoryItemLabelGenerator ()); //renderer.setItemLabelFont (new Font ("黑体", Font.PLAIN, 12)); //renderer.setItemLabelsVisible (true); //设置折线的颜色 renderer.setSeriesPaint(0, Color.BLACK); renderer.setSeriesPaint(1, Color.RED); renderer.setSeriesPaint(2, Color.BLUE); renderer.setSeriesPaint(3, Color.MAGENTA); return chart; } /** * 保存图表为文件 */ public static void saveAsFile(String filePath, JFreeChart jfreeChart, int weight, int height) throws IOException { //输出图表到文件,saveCharAsJPEG()方法的参数(File file,JFreeChart chart,int width,int height) ChartUtilities.saveChartAsJPEG(new File(filePath), jfreeChart, weight, height); } }
以java应用程序的方式,运行上面的 LineChart3DTest.java ,便可以在F盘的根目录下产生了一个名叫LineChart3D.jpg文件,如下图所示:
2、 以web项目程序的方式运行
(1)在web项目中的src目录下新建包: com.jfreechart.action , 在该包中新建类 BarChartAction.java
BarChartAction.java
package com.jfreechart.action; import java.awt.Color; import java.awt.Font; import java.io.File; import java.io.IOException; import java.util.Map; import java.util.Random; import org.jfree.chart.ChartFactory; import org.jfree.chart.ChartUtilities; import org.jfree.chart.JFreeChart; import org.jfree.chart.plot.CategoryPlot; import org.jfree.chart.plot.PlotOrientation; import org.jfree.chart.renderer.category.LineAndShapeRenderer; import org.jfree.chart.title.LegendTitle; import org.jfree.chart.title.TextTitle; import org.jfree.data.category.CategoryDataset; import org.jfree.data.category.DefaultCategoryDataset; import com.jfreechart.commons.FileUtil; import com.opensymphony.xwork2.ActionContext; public class LineChart3DAction { private JFreeChart chart; // 必须提供 getChart() 方法,且由该方法返回 JFreeChart 对象 public JFreeChart getChart() throws Exception { //JFreeChart类是一个制图对象类,先用它来创建一个制图对象chart //ChartFactory类是制图工厂类,用它来为制图对象chart完成实例化 //createLineChart3D()是制图工厂的一个方法,用来创建一个3D的折线图对象 chart = ChartFactory.createLineChart3D( "图书销量统计图", //图表标题 "年份", //X轴标题 "销售数量(本)", //Y轴标题 createDataset(), //数据集 PlotOrientation.VERTICAL, //绘制方向 true, //是否显示图例 false, //是否采用标准生成器 false //是否支持超链接 ); //通过JFreeChart对象的 setTitle方法,修改统计图表的标题部分(包括修改图表标题内容、字体大小等) chart.setTitle(new TextTitle("图书销量统计图", new Font("黑体", Font.ITALIC , 22))); //调用 JFreeChart对象的 getLegend(int index)方法,取得该图表的指定索引的图例对象,通过 LegendTitle对象来修改统计图表的图例 LegendTitle legend = chart.getLegend(0); //设置图例的字体和字体大小,即位于下方的字的字体和大小 legend.setItemFont(new Font("宋体", Font.BOLD, 14)); // 设置画布背景色 chart.setBackgroundPaint(new Color(192, 228, 106)); //取得折线图的绘图(plot)对象 CategoryPlot plot = chart.getCategoryPlot(); //设置数据区的背景透明度,范围在0.0~1.0间 plot.setBackgroundAlpha(0.5f); // 设置数据区的前景透明度,范围在0.0~1.0间 plot.setForegroundAlpha(0.5f); // 设置横轴字体 plot.getDomainAxis().setLabelFont(new Font("黑体", Font.BOLD, 14)); // 设置坐标轴标尺值字体 plot.getDomainAxis().setTickLabelFont(new Font("宋体", Font.BOLD, 12)); // 设置纵轴字体 plot.getRangeAxis().setLabelFont(new Font("黑体", Font.BOLD, 14)); // 设置绘图区背景色 plot.setBackgroundPaint(Color.WHITE); // 设置水平方向背景线颜色 plot.setRangeGridlinePaint(Color.BLACK); // 设置是否显示水平方向背景线,默认值为true plot.setRangeGridlinesVisible(true); // 设置垂直方向背景线颜色 plot.setDomainGridlinePaint(Color.BLACK); // 设置是否显示垂直方向背景线,默认值为false plot.setDomainGridlinesVisible(true); // 没有数据时显示的消息 plot.setNoDataMessage("没有相关统计数据"); plot.setNoDataMessageFont(new Font("黑体", Font.CENTER_BASELINE, 16)); plot.setNoDataMessagePaint(Color.RED); // 获取折线对象 LineAndShapeRenderer renderer = (LineAndShapeRenderer) plot .getRenderer(); //设置折点处以某种形状凸出 renderer.setShapesVisible(true); renderer.setDrawOutlines(true); renderer.setUseFillPaint(true); renderer.setFillPaint(java.awt.Color.WHITE); //设置显示折点处的数据值 //renderer.setBaseItemLabelGenerator (new StandardCategoryItemLabelGenerator ()); //renderer.setItemLabelFont (new Font ("黑体", Font.PLAIN, 12)); //renderer.setItemLabelsVisible (true); //设置折线的颜色 renderer.setSeriesPaint(0, Color.BLACK); renderer.setSeriesPaint(1, Color.RED); renderer.setSeriesPaint(2, Color.BLUE); renderer.setSeriesPaint(3, Color.MAGENTA); //设置生成的图表的文件名 String fileName = "LineChart3DBook.jpg"; //设置图像输出的指定路径 String filePath = FileUtil.getWebRootPath()+"images\\chart\\"+fileName; //输出图表到文件 saveAsFile(filePath, chart, 800, 600); //取得request对象 Map request = (Map)ActionContext.getContext().get("request"); //把生成的图表文件的路径filePath放进request对象中 request.put("filePath", filePath); return chart; } /** * 保存图表为文件 */ public static void saveAsFile(String filePath, JFreeChart jfreeChart, int weight, int height) throws IOException { //输出图表到文件,saveCharAsJPEG()方法的参数(File file,JFreeChart chart,int width,int height) ChartUtilities.saveChartAsJPEG(new File(filePath), jfreeChart, weight, height); } /** * 创建一个dataset,该dataset包含图表要显示的数据 * @return CategoryDataset */ public static CategoryDataset createDataset() { // 图例名称 String[] line = { "文学类", "科技类", "财经类", "娱乐类"}; // 类别 String[] category = { "2008年", "2009年", "2010年", "2012年", "2013年" }; Random random = new Random(); // 实例化Random对象 // 实例化DefaultCategoryDataset对象 DefaultCategoryDataset dataset = new DefaultCategoryDataset(); // 使用循环向数据集合中添加数据 for (int i = 0; i < line.length; i++) { for (int j = 0; j < category.length; j++) { dataset.addValue(100000 + random.nextInt(100000), line[i], category[j]); } } return dataset; } //在struts.xml中的对应<action>里,应该写的是 method="lineChart3D" 和 <result type="chart"> public String lineChart3D() { return "success"; } }
(2)在web项目中的src目录下新建struts.xml文件
struts.xml
[java] view plaincopyprint?
- <?xml version="1.0" encoding="UTF-8" ?>
- <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.1//EN" "http://struts.apache.org/dtds/struts-2.1.dtd">
- <struts>
- <!-- 配置 Struts 2 应用中的常量 -->
- <constant name="struts.i18n.encoding" value=http://www.mamicode.com/"UTF-8"/>
- <!-- 配置本应用中的包,继承 jfreechart-default 包 -->
- <package name="chart" extends="jfreechart-default">
- <!-- 定义一个名为 lineChart3D 的 Action -->
- <action name="lineChart3D" class="com.jfreechart.action.LineChart3DAction" method="lineChart3D">
- <result type="chart">
- /LineChart3D.jsp
- <!-- 定义 JFreeChart 报表的大小 -->
- <param name="width">800</param>
- <param name="height">500</param>
- </result>
- </action> </package>
- </struts>
(3)修改在web项目中的WebRoot/WEB-INF/目录下的web.xml
web.xml
[java] view plaincopyprint?
- <?xml version="1.0" encoding="UTF-8"?>
- <web-app version="3.0"
- xmlns="http://java.sun.com/xml/ns/javaee"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
- http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
- <!-- 设置struts 2过滤器 -->
- <filter>
- <filter-name>struts 2</filter-name>
- <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
- </filter>
- <filter-mapping>
- <filter-name>struts 2</filter-name>
- <url-pattern>/*</url-pattern>
- </filter-mapping>
- <!-- 设置欢迎页面 -->
- <welcome-file-list>
- <welcome-file>index.jsp</welcome-file>
- </welcome-file-list>
- <!-- session超时定义,单位为分钟 -->
- <session-config>
- <session-timeout>30</session-timeout>
- </session-config>
- </web-app>
(4)在web项目中的src目录下新建包: com.jfreechart.commons , 在该包中新建类 FileUtil.java
FileUtil.java
[java] view plaincopyprint?
- package com.jfreechart.commons;
- import javax.servlet.ServletContext;
- import org.apache.struts2.ServletActionContext;
- import com.opensymphony.xwork2.ActionContext;
- public class FileUtil {
- /**
- * 获得web项目根目录
- */
- public static String getWebRootPath() throws Exception {
- ActionContext actionContext = ActionContext.getContext();
- ServletContext servletContext = (ServletContext)actionContext.get(ServletActionContext.SERVLET_CONTEXT);
- String rootPath = servletContext.getRealPath("/");
- return rootPath;
- }
- }
(5)修改在web项目中的WebRoot/目录下新建index.jsp、LineChart3D.jsp
index.jsp
[java] view plaincopyprint?
- <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
- <%
- String path = request.getContextPath();
- String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
- %>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <html>
- <head>
- <base href=http://www.mamicode.com/"<%=basePath%>">
- <title>首页</title>
- </head>
- <body>
- <a href=http://www.mamicode.com/"lineChart3D.action">查看柱状图</a><br />
- </body>
- </html>
LineChart3D.jsp
[java] view plaincopyprint?
- <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
- <%@ taglib prefix="s" uri="/struts-tags"%>
- <%
- String path = request.getContextPath();
- String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
- %>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <html>
- <head>
- <base href=http://www.mamicode.com/"<%=basePath%>">
- <title>3D折线图</title>
- </head>
- <body>
- <img src=http://www.mamicode.com/"<s:property value=http://www.mamicode.com/"#request.filePath" />" />
- </body>
- </html>
完成以上步骤后,把项目部署到服务器,在浏览器中访问该项目的index.jsp文件,点击“查看3D折线图”的链接,即可跳转到LineChart3D.jsp页面,3D折线图图表就显示在LineChart3D.jsp页面上了,图表的效果如上图一致。另外,上述所用的方法是 把图表先生成一个jpg文件,存放在服务器上的该web项目的相关目录下,然后在前台的jsp页面中引用该文件在项目中的的文件路径,即可把图表显示到前台页面中
以java应用程序的方式,运行上面的 BarChartTest.java ,便可以在F盘的根目录下产生了一个名叫BarChart.jpg文件,如下图所示:
JFreeChart在Struts2中实现3D折线图统计
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。