gpt4 book ai didi

java - ReplayingDecoder 在解码时抛出异常

转载 作者:行者123 更新时间:2023-11-30 07:21:21 25 4
gpt4 key购买 nike

我创建了一个解码器来处理客户端发送的字节。这是它

import java.util.List;

import io.netty.buffer.ByteBuf;
import io.netty.channel.ChannelHandlerContext;
import io.netty.handler.codec.ReplayingDecoder;

public class MessageDecoder extends ReplayingDecoder<DecoderState> {

private int length;

public MessageDecoder()
{
super(DecoderState.READ_LENGTH);
}

@Override
protected void decode(ChannelHandlerContext ctx, ByteBuf buf, List<Object> out) throws Exception{
System.out.println(buf.readableBytes());
switch(state()){
case READ_LENGTH:
length=buf.readInt();
System.out.println("length is: "+length);
checkpoint(DecoderState.READ_CONTENT);
case READ_CONTENT:
ByteBuf frame = buf.readBytes(length);
checkpoint(DecoderState.READ_LENGTH);
out.add(frame);
break;
default:
throw new Error("Shouldn't reach here");
}
}
}

当客户端发送字节时,它会抛出下一个错误

io.netty.handler.codec.DecoderException: java.lang.IllegalArgumentException: minimumReadableBytes: -603652096 (expected: >= 0) at io.netty.handler.codec.ReplayingDecoder.callDecode(ReplayingDecoder.java:431) at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:245) at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:292) at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:278) at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:962) at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:131) at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:528) at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:485) at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:399) at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:371) at io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:112) at io.netty.util.concurrent.DefaultThreadFactory$DefaultRunnableDecorator.run(DefaultThreadFactory.java:137) at java.lang.Thread.run(Unknown Source)

该代码来自官方文档http://netty.io/4.0/api/io/netty/handler/codec/ReplayingDecoder.html所以我真的不明白为什么它不起作用

最佳答案

可能远程对等方确实将 int 写为无符号。也许您想要的是使用 readUnsignedInt() ?

关于java - ReplayingDecoder 在解码时抛出异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37511595/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com