博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Netty中定长解码器的使用
阅读量:6423 次
发布时间:2019-06-23

本文共 3835 字,大约阅读时间需要 12 分钟。

[toc]


Netty中定长×××的使用

有了前面的基础,定长×××的使用相对就比较简单了,所以这里只使用服务端的代码,测试时,用telnet作为客户客户端,数据只作单向的发送,即从客户端到服务端。

服务端

EchoServer.java

package cn.xpleaf.netty02;import io.netty.bootstrap.ServerBootstrap;import io.netty.buffer.ByteBuf;import io.netty.buffer.Unpooled;import io.netty.channel.ChannelFuture;import io.netty.channel.ChannelInitializer;import io.netty.channel.ChannelOption;import io.netty.channel.EventLoopGroup;import io.netty.channel.nio.NioEventLoopGroup;import io.netty.channel.socket.SocketChannel;import io.netty.channel.socket.nio.NioServerSocketChannel;import io.netty.handler.codec.DelimiterBasedFrameDecoder;import io.netty.handler.codec.FixedLengthFrameDecoder;import io.netty.handler.codec.string.StringDecoder;public class EchoServer {    public void bind(int port) throws Exception {        // 配置服务端的NIO线程组        EventLoopGroup bossGroup = new NioEventLoopGroup();        EventLoopGroup workerGroup = new NioEventLoopGroup();        try {            ServerBootstrap b = new ServerBootstrap();            b.group(bossGroup, workerGroup)                .channel(NioServerSocketChannel.class)                .option(ChannelOption.SO_BACKLOG, 1024)                .childHandler(new ChannelInitializer
() { @Override protected void initChannel(SocketChannel ch) throws Exception { // 添加定长分隔符×××到pipeline中,长度设置为20 ch.pipeline().addLast(new FixedLengthFrameDecoder(20)); // 添加StringDecoder×××,将ByteBuf解码成字符串对象 ch.pipeline().addLast(new StringDecoder()); // 添加业务处理handler ch.pipeline().addLast(new EchoServerHandler()); } }); // 绑定端口,同步等待成功 ChannelFuture f = b.bind(port).sync(); // 等待服务端监听端口关闭 f.channel().closeFuture().sync(); } finally { // 优雅退出,释放线程池资源 bossGroup.shutdownGracefully(); workerGroup.shutdownGracefully(); } } public static void main(String[] args) throws Exception { int port = 8080; if(args != null && args.length > 0) { try { port = Integer.valueOf(port); } catch (NumberFormatException e) { // TODO: handle exception } } new EchoServer().bind(port); }}

EchoServerHandler.java

package cn.xpleaf.netty02;import io.netty.buffer.ByteBuf;import io.netty.buffer.Unpooled;import io.netty.channel.ChannelHandlerAdapter;import io.netty.channel.ChannelHandlerContext;import io.netty.channel.ChannelInboundHandlerAdapter;public class EchoServerHandler extends ChannelInboundHandlerAdapter {    private int counter = 0;    @Override    public void channelRead(ChannelHandlerContext ctx, Object msg) throws Exception {        String body = (String) msg;        System.out.println("Receive client : [" + body + "]");    }    @Override    public void channelReadComplete(ChannelHandlerContext ctx) throws Exception {        ctx.flush();    }    @Override    public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) {        // 发生异常,关闭链路        ctx.close();    }}

测试

启动服务端,在telnet客户端中输入相应字符串:

yeyonghao@yeyonghaodeMacBook-Pro:~$ telnet localhost 8080Trying ::1...Connected to localhost.Escape character is '^]'.Ye Yonghao welcome to Beijing

此时查看服务端的输出:

Receive client : [Ye Yonghao welcome t]

可以看到中括号时字符数刚好是20个,因为在pipeline中设置定长×××时,设置的长度就是20。

可以尝试再发送消息:

yeyonghao@yeyonghaodeMacBook-Pro:~$ telnet localhost 8080Trying ::1...Connected to localhost.Escape character is '^]'.Ye Yonghao welcome to BeijingI love you so much!

再查看服务端的输出:

Receive client : [Ye Yonghao welcome t]Receive client : [o BeijingI love yo]

可以看到服务端把上一次的消息作为这次消息的开始,包括换行符,这说明定长×××确实是有效果了。

转载于:https://blog.51cto.com/xpleaf/2071241

你可能感兴趣的文章
C#中三种截屏方式总结
查看>>
群发邮件功能的完善
查看>>
EF架构~LinqToEntity里实现left join的一对一与一对多
查看>>
Spring.net 学习笔记之ASP.NET底层架构
查看>>
C# System.Windows.Forms.WebBrowser中判断浏览器内核和版本
查看>>
Java 动态太极图 DynamicTaiChi (整理)
查看>>
Web APi之Web Host消息处理管道(六)
查看>>
微信公众平台后台编辑器上线图片缩放和封面图裁剪功能
查看>>
git使用教程2-更新github上代码
查看>>
张掖百公里,再次折戟
查看>>
SAP QM Batch to Batch的转移过账事务中的Vendor Batch
查看>>
本期最新 9 篇论文,帮你完美解决「读什么」的问题 | PaperDaily #19
查看>>
图解SSIS监视文件夹并自动导入数据
查看>>
Lucene.Net 2.3.1开发介绍 —— 四、搜索(一)
查看>>
人工智能将如何变革视频监控行业?
查看>>
MyBatis Review——开发Dao的方法
查看>>
阿里云容器宣布开放支持Kubernetes托管服务
查看>>
只在UnitTest和WebHost中的出现的关于LogicalCallContext的严重问题
查看>>
Linux_FTP服务器
查看>>
Django里自定义用户登陆及登陆后跳转到登陆前页面的实现
查看>>