struts整合jfreechart

Struts2与JFreeChart的整合

1、添加相应的jar包(除struts2所必需的包以外的包):

  1. struts2-jfreechart-plugin-2.3.12.jar
  2. jcommon-1.0.17.jar
  3. jfreechart-1.0.14.jar

2、添加相应的Action

 

package cn.hpu.action;

import java.awt.Font;
import java.util.List;

import org.jfree.chart.ChartFactory;
import org.jfree.chart.JFreeChart;
import org.jfree.chart.StandardChartTheme;
import org.jfree.chart.plot.PlotOrientation;
import org.jfree.data.category.CategoryDataset;
import org.jfree.data.category.DefaultCategoryDataset;
import org.jfree.data.general.DefaultPieDataset;

import cn.hpu.po.Complain;
import cn.hpu.po.DDInfo;
import cn.hpu.service.ComplainService;
import cn.hpu.service.DDInfoService;

import com.opensymphony.xwork2.ActionContext;
import com.opensymphony.xwork2.ActionSupport;

public class ComplainAction extends ActionSupport {

	private ComplainService complainService;
	private DDInfoService ddInfoService;
	
	private List<Complain> complains;
	
	private List<DDInfo> satisfications;
	
	// 生成图形
	private JFreeChart chart;

	/**获取用户满意度饼状报表
	 * @author qinrui
	 * @see cn.hpu.service.ComplainService complainService
	 * @see cn.hpu.service.DDInfoService ddInfoService
	 * @return java.lang.String
	 */
	public String pieChart() {
		
		DefaultPieDataset dpd = new DefaultPieDataset();
	
		complains = complainService.loadComplains();
		satisfications = ddInfoService.loadCustomerSatisfications();
		
		for(DDInfo satisfication : satisfications) {
			
			if(satisfication.getName() != null && !"".equals(satisfication.getName().trim())) {
				
				int count = 0;
				
				for(Complain complain : complains) {
					
					if(complain.getSatisfication().getId().equals(satisfication.getId())) {
						count ++;
					}
				}
				dpd.setValue(satisfication.getName(), count);
			}
		}
		
		StandardChartTheme standardChartTheme=new StandardChartTheme("CN");    
        //设置标题字体    
        standardChartTheme.setExtraLargeFont(new Font("隶书",Font.BOLD,20));    
        //设置图例的字体    
        standardChartTheme.setRegularFont(new Font("宋书",Font.PLAIN,15));    
        //设置轴向的字体    
        standardChartTheme.setLargeFont(new Font("宋书",Font.PLAIN,15));    
        //应用主题样式    
        ChartFactory.setChartTheme(standardChartTheme);
		
		/**生成图形
		 * 1.title java.lang.String 标题
		 * 2.dataset org.jfree.data.general.DefaultPieDataset 数据源
		 * 3.legend java.lang.Boolean 图例
		 * 4.tooltips java.lang.Boolean 工具提示信息
		 * 5.locale java.lang.Boolean 本地化
		 */
		chart = ChartFactory.createPieChart3D("客户满意度", dpd, true, true, false);
		
		return SUCCESS;
	}
	
	/**生成柱状报表
	 * @author qinrui
	 * @see cn.hpu.service.ComplainService complainService
	 * @see cn.hpu.service.DDInfoService ddInfoService
	 * @return java.lang.String
	 */
	public String barChart() {

		DefaultCategoryDataset dcd = new DefaultCategoryDataset();
	
		complains = complainService.loadComplains();
		satisfications = ddInfoService.loadCustomerSatisfications();
		
		for(DDInfo satisfication : satisfications) {
			
			if(satisfication.getName() != null && !"".equals(satisfication.getName().trim())) {
				
				int count = 0;
				
				for(Complain complain : complains) {
					
					if(complain.getSatisfication().getId().equals(satisfication.getId())) {
						count ++;
					}
				}
				dcd.setValue(count , "", satisfication.getName());
			}
		}
		
		StandardChartTheme standardChartTheme=new StandardChartTheme("CN");    
        //设置标题字体    
        standardChartTheme.setExtraLargeFont(new Font("隶书",Font.BOLD,20));    
        //设置图例的字体    
        standardChartTheme.setRegularFont(new Font("宋书",Font.PLAIN,15));    
        //设置轴向的字体    
        standardChartTheme.setLargeFont(new Font("宋书",Font.PLAIN,15));    
        //应用主题样式    
        ChartFactory.setChartTheme(standardChartTheme);
		
		/**生成图形
		 * 1.title java.lang.String 标题
		 * 2.dataset org.jfree.data.general.DefaultPieDataset 数据源
		 * 3.legend java.lang.Boolean 图例
		 * 4.tooltips java.lang.Boolean 工具提示信息
		 * 5.locale java.lang.Boolean 本地化
		 */
		chart = ChartFactory.createBarChart("客户满意度", "满意程度", "投诉数量", dcd, PlotOrientation.VERTICAL, true, true, false);
		
		return SUCCESS;
	}
	
	public ComplainService getComplainService() {
		return complainService;
	}

	public void setComplainService(ComplainService complainService) {
		this.complainService = complainService;
	}

	public List<Complain> getComplains() {
		return complains;
	}

	public List<DDInfo> getSatisfications() {
		return satisfications;
	}

	public void setSatisfications(List<DDInfo> satisfications) {
		this.satisfications = satisfications;
	}

	public DDInfoService getDdInfoService() {
		return ddInfoService;
	}

	public void setDdInfoService(DDInfoService ddInfoService) {
		this.ddInfoService = ddInfoService;
	}

	public JFreeChart getChart() {
		return chart;
	}

	public void setChart(JFreeChart chart) {
		this.chart = chart;
	}
}

 3、配置struts.xml文件(注意要继承jfreechart-default,返回值type为chart)

 

 

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
	"-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
	"http://struts.apache.org/dtds/struts-2.3.dtd">

<struts>
	
	<package name="authority" namespace="/" extends="jfreechart-default">
		
		<!-- 生成饼状报表 -->
		<action name="Complain_pieChart" class="cn.hpu.action.ComplainAction" method="pieChart">
			<result type="chart">
				<param name="height">300</param>
				<param name="width">400</param>
			</result>
		</action>
		
		<!-- 生成柱状报表 -->
		<action name="Complain_barChart" class="cn.hpu.action.ComplainAction" method="barChart">
			<result type="chart">
				<param name="height">300</param>
				<param name="width">400</param>
			</result>
		</action>
	</package>

</struts>

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值