ie9都不支持websocket,何况ie6,但是websocket能开发那么酷的功能,怎么能让ie拦住我们的脚步?
但是怎么办?
用flash封装吧
具体的flash代码如下:
package {
import flash.display.Stage;
import flash.display.Sprite;
import flash.events.*;
import flash.external.ExternalInterface;
import flash.system.Security;
import flash.utils.Timer;
import flash.net.Socket;
import flash.utils.ByteArray;
import flash.utils.Endian;
public class websocket4ie extends Sprite {
public static function main():void
{
var websocket4ie:websocket4ie = new websocket4ie();
}
private var debugEnabled:Boolean;
private var movieName:String;
private var handlers:String;
private var server:String;
private var port:Number;
private var isDebug:Number;
private var socket:Socket;
private var socketBuffer:ByteArray = new ByteArray();
public function websocket4ie() {
Security.allowDomain("*");
var counter:Number = 0;
root.addEventListener(Event.ENTER_FRAME, function ():void { if (++counter > 100) counter = 0; });
this.movieName = root.loaderInfo.parameters.movieName;
this.handlers = root.loaderInfo.parameters.handlers;
this.server = root.loaderInfo.parameters.server;
this.port = root.loaderInfo.parameters.port;
this.isDebug = root.loaderInfo.parameters.debug;
this.debug(this.port+''+this.server);
try {
this.debugEnabled = root.loaderInfo.parameters.debugEnabled == "true" ? true : false;
} catch (ex:Object) {
this.debugEnabled = false;
}
this.connectServer();
ExternalInterface.addCallback("sendData", this.sendData);
}
public function connectServer():void {
socket = new Socket();
socket.endian = Endian.BIG_ENDIAN;
socket.addEventListener(Event.CONNECT, onConnect);
socket.addEventListener(Event.CLOSE, onClose);
socket.addEventListener(IOErrorEvent.IO_ERROR, onIOError);
socket.addEventListener(SecurityErrorEvent.SECURITY_ERROR, onSecurityError);
socket.addEventListener(ProgressEvent.SOCKET_DATA, onSocketData);
socket.connect(this.server, this.port);
this.socket = socket;
}
public function onConnect(e:Event):void {
//握手
var headers:Array = new Array();
headers.push("GET /chat HTTP/1.1\r\n");
headers.push("Upgrade: websocket\r\n");
headers.push("Connection: Upgrade\r\n");
headers.push("Host: "+this.server+":"+this.port+"\r\n");
headers.push("Origin: null\r\n");
headers.push("Sec-WebSocket-Key: 6z4ezNfATjW5/FEMYpqRuw==\r\n");
headers.push("Sec-WebSocket-Version: 13\r\n\r\n\r\n");
this.socket.writeUTFBytes(headers.join(''));
this.socket.flush();
}
public function onTrueConnect():void {
ExternalInterface.call(this.handlers+".onConnect",this.movieName);
}
public function onClose(e:Event):void {
ExternalInterface.call(this.handlers+".onClose",this.movieName,'1');
}
public function onIOError(e:IOErrorEvent):void {
ExternalInterface.call(this.handlers+".onClose",this.movieName,'2');
}
public function onSecurityError(e:SecurityErrorEvent):void {
ExternalInterface.call(this.handlers+".onClose",this.movieName,'3');
}
public var step:String = "head";
public var position:Number = 0;
public function readOnData():void {
var tmpPos:Number = this.position;
this.socketBuffer.position = this.position;
//read 一个 0x81
if(this.socketBuffer.bytesAvailable>=1) {
var h:Number = this.socketBuffer.readUnsignedByte();
this.debug("头:"+h);
this.position += 1;
if(this.socketBuffer.bytesAvailable>=1) {
var len:Number = this.socketBuffer.readUnsignedByte();
this.debug("长度:"+len);
this.position += 1;
if(len<=125) {
if(this.socketBuffer.bytesAvailable>=len) {
this.onText(this.socketBuffer.readUTFBytes(len));
this.position += len;
this.readOnData();
} else {
this.position = tmpPos;
return;
}
} else if(len==126) {
if(this.socketBuffer.bytesAvailable>=2) {
var trueLen:Number = this.socketBuffer.readUnsignedShort();
if(this.socketBuffer.bytesAvailable>=trueLen) {
this.onText(this.socketBuffer.readUTFBytes(trueLen));
this.position += trueLen;
this.readOnData();
}
} else {
this.position = tmpPos;
return;
}
}
} else {
this.position = tmpPos;
return;
}
} else {
this.position = tmpPos;
return;
}
}
public function onText(text:String):void {
ExternalInterface.call(this.handlers+".onData",this.movieName,text);
}
public function writeBytes(bytes:ByteArray):void {
this.socketBuffer.position = this.socketBuffer.length;
this.socketBuffer.writeBytes(bytes,0,bytes.length);
this.debug("buffer数据:"+this.socketBuffer.length);
this.readOnData();
}
public var is_head:Boolean = true;
public var header:ByteArray = new ByteArray();
public var headers:Array = new Array();
public function onSocketData(e:Event):void {
var bytes:ByteArray = new ByteArray();
if(this.is_head) {
while(this.socket.bytesAvailable) {
var x:Number = this.socket.readUnsignedByte();
if(x==0x81) {
this.is_head = false;
bytes.writeByte(0x81);
this.debug(this.headers);
break;
} else {
this.header.writeByte(x);
if(x==10) {
this.header.position = 0;
this.headers.push(this.header.readUTFBytes(this.header.length));
if(this.header.length==2) {
this.onTrueConnect();
}
this.header = new ByteArray();
}
continue;
}
}
if(this.socket.bytesAvailable) {
this.socket.readBytes(bytes,1,this.socket.bytesAvailable);
}
} else {
this.socket.readBytes(bytes,0,this.socket.bytesAvailable);
}
bytes.position = 0;
this.writeBytes(bytes);
}
public function sendData(text:String):void {
var head:ByteArray = new ByteArray();
head.writeByte(0x81);
var body:ByteArray = new ByteArray();
body.writeUTFBytes(text);
var len:Number = body.length;
if(len<=125) {
head.writeByte(len);
} else if(len<65536){
head.writeByte(126);
head.writeShort(len);
} else {
head.writeByte(127);
head.writeUnsignedInt(len);
}
body.position = 0;
head.position = 0;
this.socket.writeBytes(head);
this.socket.writeBytes(body);
this.socket.flush();
}
public function debug(str:*):void {
if(this.isDebug) {
ExternalInterface.call(this.handlers+".debug",this.movieName,str);
}
}
}
}
js代码如下
var handlers = {
'connects':[],
'onClose':function(index,flag) {
this.connects[index.replace("socket_","")].onClose();
},
'onConnect':function(index) {
this.connects[index.replace("socket_","")].onConnect();
},
'onData':function(index,text) {
this.connects[index.replace("socket_","")].onData(text);
},
'debug':function(index,str) {
console.log(str);
}
};
function socket4ie() {
this.debug = 0;
this.init = function() {
this.index = handlers.connects.length;
handlers.connects.push(this);
}
this.connect = function(domain,port) {
this.createFlash(domain,port);
}
this.createFlash = function(domain,port) {
var html = '<object id="socket_'+this.index+'" type="application/x-shockwave-flash" data="websocket4ie.swf" width=0 height=0 class="swfupload">\
<param name="wmode" value="window">\
<param name="movie" value="websocket4ie.swf">\
<param name="quality" value="high">\
<param name="menu" value="false">\
<param name="allowScriptAccess" value="always">\
<param name="flashvars" value="movieName=socket_'+this.index+'&handlers=handlers&server='+domain+'&port='+port+'&debug='+this.debug+'"></object>';
var div = document.createElement('div');
div.id = "flash_"+this.index;
div.innerHTML = html;
document.body.appendChild(div);
}
this.onClose = function() {
}
this.onConnect = function() {
}
this.onData = function(text) {
}
this.init();
}
相关推荐
本项目是针对WebSocket服务端进行的封装,旨在简化开发过程,让开发者无需过多关注WebSocket底层实现的细节,从而更加专注于业务逻辑。 在WebSocket协议中,客户端首先通过一个HTTP Upgrade请求建立连接,然后就...
在WebSocket不被支持的浏览器(如IE8)中,我们可以使用Flash作为替代实现。swfobject.js能够检测用户浏览器是否支持Flash,并负责在需要时插入并初始化Flash对象。 2. **web_socket.js**:这是一个JavaScript...
总的来说,"WebSocketDemo2支持ie浏览器"是一个跨平台、跨浏览器的WebSocket示例,通过兼容Flash,使得在旧版IE浏览器上也能实现WebSocket的功能。项目的实现涉及到服务端和客户端的编程,HTML和JavaScript的交互,...
这种技术的优点在于,即使浏览器不支持原生WebSocket,也可以通过Flash来提供实时通信的能力。 以下是关于Flash WebSocket的一些关键知识点: 1. **WebSocket API**:WebSocket API 是一种允许Web应用程序创建全...
`web-socket-js`是一个JavaScript库,它模拟了WebSocket API,使得在不支持WebSocket的浏览器(包括IE8)中也能使用WebSocket功能。这个库通常依赖Flash技术,因为Flash在那个时期提供了浏览器端的实时通信能力。...
在客户端,对于不支持WebSocket的浏览器(如IE9及以下),可以使用Flash Socket或Comet技术来模拟WebSocket的实时通信。Flash Socket利用Adobe Flash Player插件来建立与服务器的持久连接,而Comet则是一种长轮询或...
Qt库,作为一个强大的C++图形用户界面框架,也支持WebSocket通信。在本示例中,我们将探讨如何使用Qt中的QWebSocketServer和QWebSocket类来实现WebSocket服务端和客户端的封装,以及如何将它们集成到项目中。 首先...
6. **运行index.jsp**:用户访问这个页面时,页面中的JavaScript代码会启动WebSocket连接,Flash部分负责在旧版IE浏览器中实现这个连接。 需要注意的是,由于Flash的安全性和隐私问题,Adobe公司已经宣布将在2020年...
Vue.js 是一款流行的前端JavaScript框架,它以轻量级、高效和可复用性而闻名。在现代Web应用中,实时通信是不可或缺的功能之一...封装WebSocket服务可以极大地简化这些复杂性,让你的Vue应用具备更强大的实时交互能力。
Flash在较早的IE版本中被广泛支持,可以通过ActionScript实现WebSocket功能。这就是"flash_websocket"这个文件名所暗示的,它很可能是一个基于Flash的WebSocket库。 在实际操作中,我们需要以下步骤来实现: 1. ...
这个websocket的demo实现了实时聊天,以及用flash socket兼容了IE8甚至IE5。demo都有代码注释,有问题的可以留言,我看到就会回复,详情请参考我另外一篇博文:http://www.cnblogs.com/againn/p/8308875.html
websocket++封装,包含使用方法,简单客户端等。。。。。
在WebSocket服务器中,libuv可以帮助处理TCP连接的建立、接收数据、发送数据等基础任务,从而让开发者专注于WebSocket协议的逻辑实现。 ### gbase 工具 gbase可能是指GBase数据库产品,一种用于大数据存储和分析的...
C语言本身并不包含对WebSocket的支持,因此实现WebSocket需要理解和处理底层的TCP套接字编程,以及构建WebSocket协议的数据帧。这包括握手阶段、帧头部解析、数据编码解码、错误处理等复杂操作。 3. C语言实现...
总的来说,虽然VB6.0不直接支持WebSocket,但通过使用第三方库或者自行实现WebSocket协议,仍然可以在VB6.0中构建WebSocket应用程序。这个"VB6.0 实现WebSocket的例子"压缩包很可能是包含了一个完整的示例,展示了...
这个代码例子使用了c c++实现了websocket 开发 包含了websocket服务器和websocket客户端,拥有详细的解释 这个库比libwebsocket更加简单方便,比libsocket更加高效便捷.
Android 的原生浏览器不支持 WebSocket 技术,这使得开发者无法在 Android 上使用 WebSocket 技术来实现实时通信。为了解决这个问题,开发者们开始研究如何在 Android 上实现 WebSocket 技术。 其中,Socket.IO 是...
本封装包是针对Android平台,结合OkHttp库实现的WebSocket功能,确保了连接的稳定性和可靠性。 首先,我们要理解WebSocket的基本原理。WebSocket协议是基于TCP的,它通过在HTTP的Upgrade头部进行握手,将原有的短...