如何使用socket.io发送图像文件(二进制数据)?

时间:2016-03-23 08:15:15

标签: java android node.js file-upload socket.io

我无法将数据从Android Client发送到NodeJS Server

我在我的客户端使用Socket.IO-client java库。

但是,对我来说没有太多信息。

如何从android客户端向nodejs服务器发送二进制数据?

1 个答案:

答案 0 :(得分:7)

您可以使用Base64 编码图像:

   public void sendImage(String path)
    {
        JSONObject sendData = new JSONObject();
        try{
            sendData.put("image", encodeImage(path));
            socket.emit("message",sendData);
        }catch(JSONException e){
        }
    }

   private String encodeImage(String path)
    {
        File imagefile = new File(path);
        FileInputStream fis = null;
        try{
            fis = new FileInputStream(imagefile);
        }catch(FileNotFoundException e){
            e.printStackTrace();
        }
        Bitmap bm = BitmapFactory.decodeStream(fis);
        ByteArrayOutputStream baos = new ByteArrayOutputStream();
        bm.compress(Bitmap.CompressFormat.JPEG,100,baos);
        byte[] b = baos.toByteArray();
        String encImage = Base64.encodeToString(b, Base64.DEFAULT);
        //Base64.de
        return encImage;

    }

所以基本上你要向node.js发送一个字符串

如果您想在Base64中解码接收图片:

private Bitmap decodeImage(String data)
{
    byte[] b = Base64.decode(data,Base64.DEFAULT);
    Bitmap bmp = BitmapFactory.decodeByteArray(b,0,b.length);
    return bmp;
}