java - Netty4 可读字节太小

标签 java netty

使用 Netty4 解码时出现异常。消息长度只有640,但可读字节数不够。

 06-19 21:45:13.150 4192-4233/com.seewo.remote V/RemoteMassageDecoder: Decoder messageType == 1, messageLength: 640
 06-19 21:45:13.152 4192-4233/com.seewo.remote E/exceptionCaught: io.netty.handler.codec.DecoderException: java.lang.Exception: readableBytes is too small

1、首先在ChannelInitializer中添加解码器

private static final int MAX_FRAME_LENGTH = 1024 * 1024;
private static final int LENGTH_FIELD_LENGTH = 4;
private static final int LENGTH_FIELD_OFFSET = 1;
private static final int LENGTH_ADJUSTMENT = 2;
private static final int INITIAL_BYTES_TO_STRIP = 0;
channelPipeline.addLast("decoder", new RemoteMassageDecoder(MAX_FRAME_LENGTH,
                LENGTH_FIELD_LENGTH, LENGTH_FIELD_OFFSET, LENGTH_ADJUSTMENT, INITIAL_BYTES_TO_STRIP));
channelPipeline.addLast("encoder", new RemoteMessageEncoder());

2、第二步,解码来自服务器的字节

@Override
protected Object decode(ChannelHandlerContext ctx, ByteBuf in) throws Exception {
    byte startCharacter = in.readByte();
    int messageLength = in.readInt();
    byte messageType = in.readByte();
    in.readByte();
    Log.v("RemoteMassageDecoder", "startCharacter == " + (startCharacter & 0xff));
    Log.v("RemoteMassageDecoder", "Decoder messageType == " + messageType + ", messageLength: " + messageLength);
    if (messageLength < 0) {
        throw new Exception("messageLength < 0");
    }
    if (messageLength == 0 || messageType == 0) {
        in.readByte();
        return null;
    }
    if (in.readableBytes() < messageLength) {
        throw new Exception("readableBytes is too small");
    }
    byte[] content = new byte[messageLength];
    in.readBytes(content);
    byte stopCharacter = in.readByte();
    if (startCharacter != START_CHARACTER || stopCharacter != STOP_CHARACTER) {
        return null;
    }
    return ProtocolPack.parseFrom(AESHelper.decryptContent(content));
}

最佳答案

这个问题的原因很简单:你不能期望 TCP 流总是同时返回足够的数据。

解决方案也很简单:您的 ChannelHandler 可以扩展 ReplyingDecoder,它可以帮助您正确处理底层流。

关于java - Netty4 可读字节太小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44632477/

相关文章:

java - 收集 Object[] 数组中的所有方法参数

Java 需要 dd-MMM-YY hh :mm:ss. SSSSSSSSS 格式的时间戳来获取 Oracle 时间戳 (6)

Redis - 整数列表

grails - Micronaut 读取超时异常

java - 反序列化时出现奇怪的 Netty 错误

java - 当屏幕方向改变时android线程崩溃

java - 按位置组织 RecyclerView 中的 View

java - Android Studio 相机使用 Activity 未找到

java - Netty 和多个处理程序

redis - redisson outofDirectMemory 异常