如何使用socket.io发送二进制数据? [英] How to send binary data with socket.io?

查看:6692
本文介绍了如何使用socket.io发送二进制数据?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

所以我一直有在node.js中发送带有socket.io二进制数据真正的麻烦(JS客户端和Android客户端)。

so I have been having real trouble sending binary data with socket.io in node.js (Js client and Android client).

有没有太多的信息既不是:

There is not much information neither in:

http://socket.io/blog/introducing-socket-io -1-0 /

http://socket.io/get-started/chat/

我需要使用套接字IO发送二进制数组,我创建和填充。

I need to use socket io to send a binary array, that I create and fill.

只有code,他们给如下:

the only code they give is the following:

var socket = new WebSocket('ws://localhost');
socket.binaryType = 'arraybuffer';
socket.send(new ArrayBuffer);

我的回答是波纹管。

My answer is bellow.

推荐答案

最后,我把它用JS和Android(Java)的工作,所以我决定跟你们分享。

Finally I have it working with JS and Android ( Java ), so I decided to share it with you guys.

让我们先从服务器code:(节点JS)

Let's start with the Server Code: (Node js)

var http = require('http');

var app = http.createServer(function ejecute(request, response){});
var io = require('socket.io').listen(app);


io.on('connection', function(socket) {
        socket.on('message', function(data){
            console.log("recieved data:");
            console.log(data);

            var bufArr = new ArrayBuffer(4);
            var bufView = new Uint8Array(bufArr);
            bufView[0]=6;
            bufView[1]=7;
            bufView[2]=8;
            bufView[3]=9;
            socket.emit('message',bufArr);
        });
    });
app.listen(3000);

让到JavaScript客户端跳

Lets jump on to the Javascript client

  var socket = io("http://localhost:3000");
  socket.emit('m', 'hola from js client');

  socket.on('m', function(msg){
    var bufView = new Uint8Array(msg);
    console.log(msg)
  });

最后,我们来看看在Android(Java)的客户端:

And finally, let's show the Android (java) client:

    final Socket socket = IO.socket("http://localhost:3000",opts);

    socket.on(Socket.EVENT_CONNECT, new Emitter.Listener() {
        @Override
        public void call(Object... args) {
            socket.emit("message","hello from java");
        }
    });


    socket.on("message", new Emitter.Listener() {

        @Override
        public void call(Object... args) {
            byte[] bytearray = (byte[])args[0]; //received bytes

            for  (byte b : bytearray) {
                System.out.println("byte"+b);
            }
        }

    });

   socket.on(Socket.EVENT_DISCONNECT, new Emitter.Listener() {
    @Override
    public void call(Object... args) {}
});

我希望这是给你一切有用。
干杯!

I hope it is useful to you all. Cheers!

这篇关于如何使用socket.io发送二进制数据?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆