- 浏览: 32886 次
- 性别:
- 来自: 西安
文章分类
最新评论
在flex+java的web工程中,html或jsp中可加入flex编译过的flash
工程如图:
现在我们要再index.html中加入WebTest编译后生成的flash。
index.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>index.html</title> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="this is my page"> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <!--<link rel="stylesheet" type="text/css" href="./styles.css">--> <script language="javascript" src="js/SwfObject.js" type="text/javascript"></script> </head> <body><br>This is my HTML page. <br> <div class="j_tabs_tit j_xline"> <script type="text/javascript"> var so = new SWFObject("ActiveX/WebTest.swf", "WebTest", "100%", "90%", "7","#336699"); so.addParam("allowFullScreen", "true"); so.addParam("wmode", "transparent"); so.write("flashcontent"); </script> </div> </html>
这里面用到了一个js,即SwfObject.js,放在了这个工程的WebRoot下的js目录中
SwfObject.js
/** * SWFObject v1.5: Flash Player detection and embed - * http://blog.deconcept.com/swfobject/ * * SWFObject is (c) 2007 Geoff Stearns and is released under the MIT License: * http://www.opensource.org/licenses/mit-license.php * */ if(typeof deconcept == "undefined") { var deconcept = new Object(); } if(typeof deconcept.util == "undefined") { deconcept.util = new Object(); } if(typeof deconcept.SWFObjectUtil == "undefined") { deconcept.SWFObjectUtil = new Object(); } deconcept.SWFObject = function(swf, id, w, h, ver, c, quality, xiRedirectUrl, redirectUrl, detectKey) { if (!document.getElementById) { return; } this.params = new Object(); this.variables = new Object(); this.attributes = new Array(); if(swf) { this.setAttribute('swf', swf); } if(id) { this.setAttribute('id', id); } if(w) { this.setAttribute('width', w); } if(h) { this.setAttribute('height', h); } if(ver) { this.setAttribute('version', new deconcept.PlayerVersion(ver.toString().split("."))); } if(c) { this.addParam('bgcolor', c); } var q = quality ? quality : 'high'; this.addParam('quality', q); this.setAttribute('useExpressInstall', false); this.setAttribute('doExpressInstall', false); var xir = (xiRedirectUrl) ? xiRedirectUrl : window.location; this.setAttribute('xiRedirectUrl', xir); this.setAttribute('redirectUrl', ''); if(redirectUrl) { this.setAttribute('redirectUrl', redirectUrl); } } deconcept.SWFObject.prototype = { useExpressInstall: function(path) { this.xiSWFPath = !path ? "expressinstall.swf" : path; this.setAttribute('useExpressInstall', true); }, setAttribute: function(name, value) { this.attributes[name] = value; }, getAttribute: function(name) { return this.attributes[name]; }, addParam: function(name, value) { this.params[name] = value; }, getParams: function() { return this.params; }, addVariable: function(name, value) { this.variables[name] = value; }, getVariable: function(name) { return this.variables[name]; }, getVariables: function() { return this.variables; }, getVariablePairs: function() { var variablePairs = new Array(); var key; var variables = this.getVariables(); for(key in variables) { variablePairs[variablePairs.length] = key +"="+ variables[key]; } return variablePairs; }, getSWFHTML: function() { var swfNode = ""; if (navigator.plugins && navigator.mimeTypes && navigator.mimeTypes.length) { // netscape plugin architecture if (this.getAttribute("doExpressInstall")) { this.addVariable("MMplayerType", "PlugIn"); this.setAttribute('swf', this.xiSWFPath); } swfNode = '<embed type="application/x-shockwave-flash" src="'+ this.getAttribute('swf') +'" width="'+ this.getAttribute('width') +'" height="'+ this.getAttribute('height') +'" style="'+ this.getAttribute('style') +'"'; swfNode += ' id="'+ this.getAttribute('id') +'" name="'+ this.getAttribute('id') +'" '; var params = this.getParams(); for(var key in params) { swfNode += [key] +'="'+ params[key] +'" '; } var pairs = this.getVariablePairs().join("&"); if (pairs.length > 0) { swfNode += 'flashvars="'+ pairs +'"'; } swfNode += '/>'; } else { // PC IE if (this.getAttribute("doExpressInstall")) { this.addVariable("MMplayerType", "ActiveX"); this.setAttribute('swf', this.xiSWFPath); } swfNode = '<object id="'+ this.getAttribute('id') +'" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+ this.getAttribute('width') +'" height="'+ this.getAttribute('height') +'" style="'+ this.getAttribute('style') +'">'; swfNode += '<param name="movie" value="'+ this.getAttribute('swf') +'" />'; var params = this.getParams(); for(var key in params) { swfNode += '<param name="'+ key +'" value="'+ params[key] +'" />'; } var pairs = this.getVariablePairs().join("&"); if(pairs.length > 0) { swfNode += '<param name="flashvars" value="'+ pairs +'" />'; } swfNode += "</object>"; } return swfNode; }, write: function(elementId) { document.write(this.getSWFHTML()); return true; } } /* ---- detection functions ---- */ deconcept.SWFObjectUtil.getPlayerVersion = function() { var PlayerVersion = new deconcept.PlayerVersion([0,0,0]); if(navigator.plugins && navigator.mimeTypes.length) { var x = navigator.plugins["Shockwave Flash"]; if(x && x.description) { PlayerVersion = new deconcept.PlayerVersion(x.description.replace(/([a-zA-Z]|\s)+/, "").replace(/(\s+r|\s+b[0-9]+)/, ".").split(".")); } }else if (navigator.userAgent && navigator.userAgent.indexOf("Windows CE") >= 0) { // if Windows CE var axo = 1; var counter = 3; while(axo) { try { counter++; axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+ counter); // document.write("player v: "+ counter); PlayerVersion = new deconcept.PlayerVersion([counter,0,0]); } catch (e) { axo = null; } } } else { // Win IE (non mobile) // do minor version lookup in IE, but avoid fp6 crashing issues // see // http://blog.deconcept.com/2006/01/11/getvariable-setvariable-crash-internet-explorer-flash-6/ try { var axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7"); } catch(e) { try { var axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6"); PlayerVersion = new deconcept.PlayerVersion([6,0,21]); axo.AllowScriptAccess = "always"; // error if player version < // 6.0.47 (thanks to Michael // Williams @ Adobe for this // code) } catch(e) { if (PlayerVersion.major == 6) { return PlayerVersion; } } try { axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash"); } catch(e) { } } if (axo != null) { PlayerVersion = new deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(",")); } } return PlayerVersion; } deconcept.PlayerVersion = function(arrVersion) { this.major = arrVersion[0] != null ? parseInt(arrVersion[0]) : 0; this.minor = arrVersion[1] != null ? parseInt(arrVersion[1]) : 0; this.rev = arrVersion[2] != null ? parseInt(arrVersion[2]) : 0; } deconcept.PlayerVersion.prototype.versionIsValid = function(fv) { if(this.major < fv.major) return false; if(this.major > fv.major) return true; if(this.minor < fv.minor) return false; if(this.minor > fv.minor) return true; if(this.rev < fv.rev) return false; return true; } /* ---- get value of query string param ---- */ deconcept.util = { getRequestParameter: function(param) { var q = document.location.search || document.location.hash; if (param == null) { return q; } if(q) { var pairs = q.substring(1).split("&"); for (var i=0; i < pairs.length; i++) { if (pairs[i].substring(0, pairs[i].indexOf("=")) == param) { return pairs[i].substring((pairs[i].indexOf("=")+1)); } } } return ""; } } /* fix for video streaming bug */ deconcept.SWFObjectUtil.cleanupSWFs = function() { var objects = document.getElementsByTagName("OBJECT"); for (var i = objects.length - 1; i >= 0; i--) { objects[i].style.display = 'none'; for (var x in objects[i]) { if (typeof objects[i][x] == 'function') { objects[i][x] = function() { }; } } } } // fixes bug in some fp9 versions see // http://blog.deconcept.com/2006/07/28/swfobject-143-released/ if (deconcept.SWFObject.doPrepUnload) { if (!deconcept.unloadSet) { deconcept.SWFObjectUtil.prepUnload = function() { __flash_unloadHandler = function() { }; __flash_savedUnloadHandler = function() { }; window.attachEvent("onunload", deconcept.SWFObjectUtil.cleanupSWFs); } window.attachEvent("onbeforeunload", deconcept.SWFObjectUtil.prepUnload); deconcept.unloadSet = true; } } /* add document.getElementById if needed (mobile IE < 5) */ if (!document.getElementById && document.all) { document.getElementById = function(id) { return document.all[id]; } } /* add some aliases for ease of use/backwards compatibility */ var getQueryParamValue = deconcept.util.getRequestParameter; var FlashObject = deconcept.SWFObject; // for legacy support var SWFObject = deconcept.SWFObject; var FlashVersion = "9.0.28"; function OnSwfInit(sappid) { }
这样就ok了,加入的flash文件写在html代码中。如index.html
- index.rar (568 Bytes)
- 下载次数: 9
- SwfObject.rar (2.7 KB)
- 下载次数: 11
发表评论
-
test1
2014-08-24 18:38 628test -
test
2014-08-24 09:43 659teste -
4、Flex3自定义事件、事件冒泡及传值、组件间的函数回调及传值
2011-11-24 20:11 1690为了演示事件冒泡,demo写的可能有点繁琐。大家凑合看看。 ... -
3、Flex全屏方式
2011-11-22 23:27 1101<?xml version="1.0" ... -
1、建立java+flex项目
2011-11-22 23:26 9021.向导界面 2. 3.向导界面 ... -
Flex 的基礎架構
2011-11-02 11:29 0Flex 的基础架构 关于flex 基本上常被问到的不外乎就 ... -
基础的数据管理(LCDS)
2011-10-11 14:00 0基础的数据管理(LCDS) ... -
FLEX DateField及DateChooser
2011-11-22 23:27 30671、<mx:DateField yearNaviga ... -
FLEX中带复选框的DataGrid
2011-09-23 10:07 15781.主文件 <?xml version=" ... -
FLEX数据传输中的乱码解决方案
2011-09-22 15:15 0var byteArray:ByteArray = new B ... -
Flex中mx:model标签的运用
2011-09-23 10:09 912使用<mx:Model id="example ... -
ApplicationControlBar组件及creationComplete
2011-09-23 10:10 11361.flex加载完成后,可以调用方法,包括httpservic ...
相关推荐
在实际开发中,有一些工具可以帮助简化JSP与Flash的集成,如SWFObject,这是一个轻量级的JavaScript库,用于插入和检测Flash内容。它提供了良好的浏览器兼容性和优雅降级功能,确保即使用户没有安装Flash插件,页面...
JDBC(Java Database Connectivity)用于在JSP中与数据库进行交互,包括连接、查询、插入、更新和删除数据。 4. **用户认证与授权**:论坛需要用户登录功能,涉及到身份验证和权限控制。这通常通过session管理实现...
`<object>`标签允许在页面中插入外部对象,如插件或应用程序。在这个例子中,我们指定的`classid`和`codebase`属性定义了Flash插件的位置和版本,而`width`和`height`则设定了播放器的尺寸。 #### 2. 设置参数 ...
压缩包中的"jspflashguest"文件可能是项目的主要源代码或资源文件,包含了JSP页面、Flash影片、样式表(CSS)、JavaScript脚本等组成部分。通过分析这个文件,学习者可以深入了解如何整合这三者以构建一个完整的Web...
2. **JSP(JavaServer Pages)**:JSP是一种动态网页技术,由Java语言编写,它允许开发人员将Java代码嵌入到HTML或XML文档中,以生成动态内容。JSP的核心概念包括指令、脚本元素和动作,它可以与JavaBean配合使用,...
5. JSP(JavaServer Pages):在服务器端,JSP接收来自前端的请求,解析FormData中的图片数据,通常会将其转换为Blob或File对象。然后,可以将图片保存到服务器的文件系统或者数据库中。JSP也可以返回保存成功与否的...
在JavaServer Pages (JSP) 中播放SWF(Shockwave Flash)视频,是Web开发中一个常见的需求,尤其是在多媒体内容丰富的网站上。SWF是一种由Adobe Flash创作的格式,广泛用于展示交互式动画、视频和应用程序。下面我们...
在Flash与JSP的组合中,MySQL通常作为数据存储层,保存和管理由Flash应用程序发送或接收的数据。 4. **Flash与数据库的连接**:Flash可以通过Socket或者XMLSocket对象与服务器进行通信,实现与后端数据库的连接。在...
2. **JSP页面**:编写JSP页面,定义Servlet或使用JSP的内置对象(如Request和Response)处理HTTP请求,处理来自Flash的查询、插入、更新或删除操作。 3. **Flash ActionScript**:在Flash中使用ActionScript编写...
此外,游戏的进度和分数可能需要存储在数据库中,JSP可以通过Java的JDBC API连接数据库,执行插入、查询等操作。 描述中提到的Flash小游戏是用户界面的一部分,它可能包含游戏逻辑的前端实现。Flash是一种创建交互...
JSP播放器是利用JSP、JavaScript、HTML、CSS以及可能的Flash或HTML5技术,来实现网页上的视频播放功能。 【描述】中的信息指出,用户在下载并解压缩文件后,可以通过打开`demo.htm`来预览播放器的实际效果。这表明...
在JSP中插入Flash,可以通过HTML的`<object>`或`<embed>`标签来实现。然而,考虑到Flash的逐渐淘汰,开发者应考虑使用HTML5的Canvas、SVG或者WebGL等替代方案。 12.4 MP3在线播放与下载: 在JSP中,可以创建一个MP3...
通常,我们会使用`<object>`或`<embed>`标签来插入SWF(Shockwave Flash)文件,这是Flex应用程序的输出格式。例如: ```jsp ...
1. **添加**:用户填写表单后,JSP页面收集数据并通过POST请求提交到服务器,服务器端的Servlet或JSP页面处理这些数据,插入到数据库中。 2. **删除**:通常通过一个确认页面,用户确认要删除的记录,服务器执行对应...
以上内容详细介绍了HTML、JSP、Dreamweaver、Photoshop和Flash在构建商务网站过程中的应用,以及商务网站的重要特性。这些技术的结合使用,可以创建出功能强大且视觉吸引力强的商务平台,满足现代商业需求。
在IT行业中,Flex是一种强大的富互联网应用程序(RIA)开发框架,由Adobe公司提供,主要用于创建交互式的、基于Flash的用户界面。"flex解决JSP遮盖"这个问题涉及到Flex与Java Server Pages(JSP)的集成,以及在...
这通常涉及到对不同媒体类型的处理,如通过Flash或HTML5的video/audio标签来播放视频和音频,或者使用JavaScript库如jQuery来处理图片的预览和展示。 【SQL Server数据库】 博客系统的数据存储通常依赖于关系型...
2. **脚本元素(Scriptlets)**:如`<%...%>`,用于插入Java代码片段。 3. **表达式(Expressions)**:如`${...}`,用于输出Java变量的值。 4. **声明(Declarations)**:如`!...%>`,用于声明变量或方法。 5. **...