0

我正在尝试实现一个非常简单的套接字服务器。我需要阅读一些消息,用新行或任何其他分隔符分隔。

根据此文档: http: //netty.io/4.0/api/io/netty/handler/codec/string/StringDecoder.htmlhttp://netty.io/4.0/api/io/netty/handler/codec /DelimiterBasedFrameDecoder.html

此通道初始化程序的代码

ChannelInitializer<SocketChannel> channelInitializer = new ChannelInitializer<SocketChannel>() {
            @Override
            public void initChannel(SocketChannel ch) throws Exception {

                ch.pipeline().addLast("frameDecoder", new DelimiterBasedFrameDecoder(Delimiters.lineDelimiter()));
                ch.pipeline().addLast("stringDecoder", new StringDecoder(CharsetUtil.UTF_8));

                // Encoder
                ch.pipeline().addLast("stringEncoder", new StringEncoder(CharsetUtil.UTF_8));
            }
         };

应该做的伎俩。

但是对于任何可以使用提供的参数的解码器和编码器都没有合适的构造函数。他们期望一些整数作为第一个参数和一个字节数组。只有 stringDecoder 似乎没问题。

我在这里想念什么?

4

1 回答 1

0

netty 4.0 的内联文档目前已经过时——但它处于 alpha/beta/development 状态。

引入整数参数以防止无限缓冲区增长并指定最大帧长度。

所以new LineBasedFrameDecoder(4096))类似于new DelimiterBasedFrameDecoder(Delimiters.lineDelimiter())

于 2013-03-23T21:22:53.907 回答