1. 程式人生 > >netty發訊息時提示 unsupported message type: [B (expected: ByteBuf, FileRegion)

netty發訊息時提示 unsupported message type: [B (expected: ByteBuf, FileRegion)

解決辦法,新加一個Encoder

public class ByteArrayToBinaryEncoder extends MessageToMessageEncoder<byte[]> {
    @Override
    protected void encode(ChannelHandlerContext ctx, byte[] msg, List<Object> out) throws Exception {
        out.add( new BinaryWebSocketFrame(Unpooled.wrappedBuffer(msg)));
    }
}