`
云端月影
  • 浏览: 3357 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

Struts2添加 open flash chart

阅读更多
准备以下开源项目:
1. Struts 2.1.6
2. Open Flash Chart 2 Version 2 Lug Wyrm Charmer (28th, July 2009)
3. jofc2,这东西不知道是没做好还是什么意思,好像和ofc2不怎么匹配,最好下源码,有什么问题直接改。
4. log4j

用eclipse新建动态网站,取名OFC2Demo,将Struts2 lib目录下commons-fileupload-1.2.1.jar、commons-logging-1.0.4.jar、freemarker-2.3.13.jar、ognl-2.6.11.jar、struts2-core-2.1.6.jar、xstream-1.3.1.jar和xwork-2.1.2.jar、log4j.jar复制到WebContent\lib目录下。

使用svn下载jofc2源码,http://jofc2.googlecode.com/svn/trunk/,将下载后的src目录下的jofc2整个目录和下级内容全部复制到项目src目录下。

在web.xml中加入struts2拦截器
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
  <display-name>OFC2Demo</display-name>

  <filter>
    <filter-name>struts2</filter-name>
    <filter-class>
      org.apache.struts2.dispatcher.FilterDispatcher
    </filter-class>
  </filter>

  <filter-mapping>
    <filter-name>struts2</filter-name>
    <url-pattern>/*</url-pattern>
  </filter-mapping>

  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>
</web-app>

在返回jofc2生成Open Flash Chart数据时,本来想用jsonplugin插件,但发现序列化jofc2的Chart对象时,许多元素名称和Chart.toString()不同,这使得Open Flash Chart解析数据时不认识。所以需增加一个Struts2自定义Result Type,步骤如下:
新建类,OFC2Plugin
package com.xy.strutsplugin;

import java.io.IOException;
import java.io.PrintWriter;

import javax.servlet.http.HttpServletResponse;

import jofc2.model.Chart;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.struts2.StrutsStatics;

import com.opensymphony.xwork2.ActionContext;
import com.opensymphony.xwork2.ActionInvocation;
import com.opensymphony.xwork2.Result;
import com.opensymphony.xwork2.util.ValueStack;

public class OFC2Result implements Result {
    private static final long serialVersionUID = 6881760833309063964L;
    private static final Log log = LogFactory.getLog(OFC2Result.class);

    public void execute(ActionInvocation invocation) throws Exception {
        ActionContext actionContext = invocation.getInvocationContext();
        HttpServletResponse response = (HttpServletResponse) actionContext
                .get(StrutsStatics.HTTP_RESPONSE);
       
        try {
            ValueStack stack = invocation.getStack();
            Chart chart = (Chart)stack.findValue("ofcChart");
           
            response.setContentType("application/json-rpc;charset=utf-8");
            response.setHeader("Cache-Control", "no-cache");
            response.setHeader("Expires", "0");
            response.setHeader("Pragma", "No-cache");
           
            PrintWriter out = response.getWriter();
            log.debug(chart.toString());
            out.print(chart.toString());
        } catch (IOException exception) {
            log.error(exception.getMessage(), exception);
            throw exception;
        }
    }
}
在src下新建struts-plugin.xml
<?xml version="1.0" encoding="UTF-8" ?>

<!DOCTYPE struts PUBLIC
        "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
        "http://struts.apache.org/dtds/struts-2.0.dtd">

<struts>
    <package name="ofc2-default" extends="struts-default">
        <result-types>
            <result-type name="ofc2" class="com.xy.strutsplugin.OFC2Result"/>
        </result-types>
    </package>
</struts>

配置log4j,以查看json输出信息。
在src下增加两个文件
commons-logging.properties
## set Log as Log4j
org.apache.commons.logging.Log=org.apache.commons.logging.impl.Log4JLogger
log4j.properties
# This is the configuring for logging displayed in the Application Server
log4j.rootCategory=DEBUG,stdout

#stdout configure
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern= %d %p [%c] - <%m>%n

##
log4j.logger.com.xy.strutsplugin.OFC2Result=DEBUG

好了,现在将ofc所需的包添加到项目中
在WebContent目录下添加文件夹ofc2,将open-flash-chart-2-Lug-Wyrm-Charmer目录下的open-flash-chart.swf和js目录复制到新建的ofc2目录下。

演示Line Chart
在Action层增加类LineAction
package com.xy.action;

import java.text.DateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.Locale;

import jofc2.model.Chart;
import jofc2.model.elements.LineChart;
import jofc2.model.axis.YAxis;
import jofc2.model.Text;

import com.opensymphony.xwork2.ActionSupport;

public class LineAction extends ActionSupport{
    private static final long serialVersionUID = -5759373192727732648L;
   
    private Chart ofcChart;
    public Chart getOfcChart() {
        return ofcChart;
    }
   
    public String dot(){
        List<LineChart.Dot> data1=new ArrayList<LineChart.Dot>()
                , data2=new ArrayList<LineChart.Dot>()
                , data3=new ArrayList<LineChart.Dot>();
        for(double i=0;i<6.2;i+=0.2){
            // line 1 dot
            LineChart.Dot dot1 = new LineChart.Dot(Math.sin(i)*1.9+10);
            dot1.setDotSize(5);            // 点大小
            dot1.setColour("#f00000");    // 设置点颜色
            data1.add(dot1);
           
            // line 2 dot
            LineChart.Dot dot2 = new LineChart.Dot(Math.sin(i)*1.9+7);
            dot2.setDotSize(3);
            dot2.setHaloSize(1);        // 点外空白大小
            dot2.setColour("#3D5C56");
            data2.add(dot2);
           
            // line 3 dot
            LineChart.Dot dot3 = new LineChart.Dot(Math.sin(i)*1.9+4);
            dot3.setDotSize(4);
            dot3.setHaloSize(2);
            data3.add(dot3);
        }
       
        Date date = new Date();
        Locale locale = new Locale("zh","CN");
        DateFormat dateFormat = DateFormat.getDateInstance(DateFormat.FULL, locale);
       
        // line 1
        LineChart line1 = new LineChart();
        line1.setDotStyle(new LineChart.Style(LineChart.Style.Type.DOT));
        line1.setWidth(1);            // 线宽
        line1.addDots(data1);        // 增加数据
       
        // line 2
        LineChart line2 = new LineChart();
        line2.setDotStyle(new LineChart.Style(LineChart.Style.Type.DOT));
        line2.setColour("#3D5C56");
        line2.setWidth(2);
        line2.addDots(data2);
       
        // line3
        LineChart line3 = new LineChart();
        line3.setDotStyle(new LineChart.Style(LineChart.Style.Type.DOT));
        line3.setWidth(6);
        line3.addDots(data3);
       
        YAxis y = new YAxis();
        y.setRange(0, 15, 5);        // 设置Y柚范围,参数依次为最小值、最大值、间隔

        ofcChart = new Chart();
        ofcChart.setTitle(new Text(dateFormat.format(date)));    // 设置标题
        ofcChart.addElements(line1);                            // 增加线到图表
        ofcChart.addElements(line2);
        ofcChart.addElements(line3);
        ofcChart.setYAxis(y);                                    // 设置Y柚
       
        return SUCCESS;
    }
}

增加struts配置文件
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
        "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
        "http://struts.apache.org/dtds/struts-2.0.dtd">

<struts>
    <package name="ofc2" extends="ofc2-default">
       <action name="line" class="com.xy.action.LineAction">
         <result type="ofc2"/>
       </action>
    </package>
</struts>

在WebContent目录下增加line目录,目录下增加dot.html,对应官方示例Line Dot,dot.html内容如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Line Dot</title>

<script type="text/javascript" src="../jquery/jquery.js"></script>
<script type="text/javascript" src="../ofc2/js/swfobject.js"></script>

<script type="text/javascript" language="javascript">
    $(document).ready(function(){
        swfobject.embedSWF("../ofc2/open-flash-chart.swf",
                    "chart", "550", "300", "9.0.0",
                    "expressInstall.swf",
                    {"data-file":"line!dot"});
    });
</script>
</head>
<body>
    <div id="chart"></div>
</body>
</html>
这里用到了一点jquery的东西,请把jquery的包增加到相应目录下。

运行Tomcat,浏览器输入http://localhost:8080/OFC2Demo/line/dot.html,出下如下图表
分享到:
评论

相关推荐

    Open Flash Chart的应用(java),就是很炫的报表了

    这方面不再多说,下面主要说明java方面的应用,并针对struts2,至于servlet及struts1用法基本类似。 第二步:在action里,通过各种方式获取数据信息,根据提供的jar包生成需要的图形类,再将图形类转化为字符串,...

    图表工具(Open_Flash_Chart)在java中的使用

    Open Flash Chart是一款强大的图表工具,尤其适用于Java开发者。它是一个基于Flash的图形库,能够创建出美观、流畅的图表,支持多种图表类型,包括条形图、饼图、线图等,总计11种基本图形,能满足大多数数据分析和...

    Struts2 经典flash上传文件

    在本案例中,我们将探讨如何使用Struts2与Flash技术相结合实现文件的上传,并且展示上传进度条,提高用户体验。 1. **Struts2文件上传基础** - Struts2提供了一个名为`CommonsFileUploadInterceptor`的拦截器,它...

    Struts 2综合应用实例——添加学生信息

    这些库通常位于`struts2-blank-2.0.14.war`的`\WEB-INF\lib`目录下,共有五个`.jar`文件,包括但不限于`struts2-core.jar`等。 **4. 修改`web.xml`文件** - 在`web.xml`中,我们需要添加Filter的相关配置,以便...

    flashchart 整合S2SH源码

    在本项目中,我们将探讨如何将FlashChart整合到Struts2、Spring和Hibernate(简称S2SH)这一流行的Java开发框架中。 首先,理解S2SH框架是至关重要的。Struts2是一个MVC(Model-View-Controller)框架,用于构建...

    struts2 Https 配置

    Struts2是一个非常流行的Java Web框架,用于构建和维护可扩展、模块化且易于管理的企业级应用程序。在当今网络安全日益重要的环境下,使用HTTPS协议来确保数据传输的安全性变得至关重要。Struts2支持HTTPS配置,可以...

    struts2jar包

    Struts2是一个强大的Java EE应用程序框架,主要用于构建企业级的Web应用。它的核心是MVC(Model-View-Controller)设计模式,可以帮助开发者组织代码,提高开发效率,并且提供了丰富的特性来支持表单验证、国际化、...

    Struts——an open-source MVC implementation

    2. **易扩展**:由于组件化设计,可以方便地添加新功能或替换现有组件。 3. **强大的表单验证**:ActionForm和控制器的结合提供了强大的数据验证机制。 4. **国际化与本地化支持**:方便地实现多语言网站。 5. **...

    添加Struts2支持

    接下来,我们将详细探讨如何在项目中添加Struts2支持。 首先,你需要下载Struts2的核心库。这通常是一个包含各种jar文件和示例程序的zip包。解压后,你会看到`apps`、`docs`、`lib`和`src`等目录。`apps`下的示例...

    Struts2漏洞检查工具Struts2.2019.V2.3

    Struts2是一款非常流行的Java Web框架,用于构建企业级应用。然而,随着时间的推移,Struts2在安全方面暴露出了一些重要的漏洞,这给使用该框架的系统带来了潜在的安全风险。"Struts2漏洞检查工具Struts2.2019.V2.3...

    struts2项目开发

    2. 可扩展性:Struts2 框架提供了一个可扩展的架构,可以轻松地添加新的功能。 3. 高效性:Struts2 框架提供了一个高效的架构,可以快速地处理用户的请求。 Struts2 框架的应用场景 Struts2 框架的应用场景包括: ...

    Struts2漏洞测试

    Struts2漏洞测试Struts2漏洞测试Struts2漏洞测试Struts2漏洞测试Struts2漏洞测试Struts2漏洞测试Struts2漏洞测试Struts2漏洞测试Struts2漏洞测试Struts2漏洞测试Struts2漏洞测试Struts2漏洞测试Struts2漏洞测试...

    struts2 最新漏洞 S2-016、S2-017修补方案 .docx

    Struts2 最新漏洞 S2-016、S2-017 修补方案 Struts2 是一个基于 Java 的 Web 应用程序框架,由 Apache 软件基金会维护。最近,Struts2 发生了两个严重的漏洞,分别是 S2-016 和 S2-017,这两个漏洞可能会导致攻击者...

    struts2-core.jar

    struts2-core-2.0.1.jar, struts2-core-2.0.11.1.jar, struts2-core-2.0.11.2.jar, struts2-core-2.0.11.jar, struts2-core-2.0.12.jar, struts2-core-2.0.14.jar, struts2-core-2.0.5.jar, struts2-core-2.0.6.jar,...

    struts2jar.zip

    开发者需要将这些JAR文件添加到项目的类路径中,以便能够使用Struts2的功能。文件可能会详细解释如何配置构建工具(如Maven或Gradle)来管理这些依赖,或者如何手动将JAR文件放入WEB-INF/lib目录。 "struts2必备包...

    Struts2教学视频

    1. 引入Struts2的核心库依赖到项目中,这通常是在Maven或Gradle的pom.xml或build.gradle文件中添加对应的依赖。 2. 配置web.xml文件,将Struts2的Filter映射到Web应用的请求上。 3. 创建Struts2的配置文件struts.xml...

    struts2 总结工程大全

    struts2 总结工程大全struts2 总结工程大全struts2 总结工程大全struts2 总结工程大全struts2 总结工程大全struts2 总结工程大全struts2 总结工程大全struts2 总结工程大全struts2 总结工程大全struts2 总结工程大全...

    struts2环境搭建+struts2 新闻发布系统+struts2 留言板

    struts2环境搭建+struts2 新闻发布系统+struts2 留言板 struts2环境搭建:基础框架搭建,简单易上手,...struts2 留言板:struts2+jquery 直接导入myecplise中即可使用,很好用,可以在此基础上添加并完善项目将更完美。

    struts2所有jar包程序文件

    这些jar文件是Struts2框架运行的基础,开发者需要将它们添加到项目的类路径中,以便能够利用Struts2的各种特性。 Struts2的核心jar包包括以下几个主要部分: 1. `struts2-core.jar`:这是Struts2框架的核心库,...

    Struts2视频教程

    ### Struts2核心知识点解析 #### 一、Struts2框架概述 - **定义与特点**:Struts2是一款基于MVC(Model-View-Controller)设计模式的Java Web应用程序框架,它继承了Struts1的优点,同时在设计上更加灵活、易用,...

Global site tag (gtag.js) - Google Analytics