Netty分隔符和定长解码器使用

/**

  • DelimiterBasedFrameDecoder案例

  •   服务端
    
  • @author 波波烤鸭

  • @email dengpbs@163.com

*/

public class EchoServer {

public void bind(int port) throws Exception {

// 配置服务端的NIO线程组

// 服务端接受客户端的连接

NioEventLoopGroup bossGroup = new NioEventLoopGroup();

// 进行SocketChannel的网络读写

NioEventLoopGroup workerGroup = new NioEventLoopGroup();

try {

ServerBootstrap b = new ServerBootstrap();

b.group(bossGroup, workerGroup).channel(NioServerSocketChannel.class)

.option(ChannelOption.SO_BACKLOG, 100)

.handler(new LoggingHandler(LogLevel.INFO))

.childHandler(new ChannelInitializer() {

@Override

protected void initChannel(SocketChannel ch) throws Exception {

// 1.定义分隔符

ByteBuf delimiter = Unpooled.copiedBuffer(“$_”.getBytes());

// 2.添加分隔符解码器 单条消息最大长度1024,

// 当到达长度后仍然没有查找到分隔符,就抛TooLongFrameException

// 第二个参数是分隔符缓冲对象

ch.pipeline().addLast(new DelimiterBasedFrameDecoder(1024, delimiter));

// 3.添加字符串处理解码器

ch.pipeline().addLast(new StringDecoder());

// 4.添加自定义的处理器

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(args[0]);

}catch(NumberFormatException e){

// 采用默认值

}

}

new EchoServer().bind(port);

}

}

EchoServerHandler

package com.dpb.netty.demo3;

import io.netty.buffer.ByteBuf;

import io.netty.buffer.Unpooled;

import io.netty.channel.ChannelHandlerAdapter;

import io.netty.channel.ChannelHandlerContext;

/**

  • DelimiterBasedFrameDecoder 案例

  • 自定义处理器

  • @author 波波烤鸭

  • @email dengpbs@163.com

*/

public class EchoServerHandler extends ChannelHandlerAdapter{

// 统计接收消息的数量

private int counter;

@Override

public void channelRead(ChannelHandlerContext ctx, Object msg) throws Exception {

// 获取客户端传递的消息

String body = (String) msg;

// 打印消息

System.out.println(“This is “+ ++counter + " times receive client :[”+body+”]");

// 分隔符已经被截取掉了,响应信息的时候我们需要再加上分隔符

body += “$_”;

ByteBuf echo = Unpooled.copiedBuffer(body.getBytes());

ctx.writeAndFlush(echo);

}

@Override

public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception {

cause.printStackTrace();

ctx.close(); // 发生异常关闭链路

}

}

客户断


EchoClient

package com.dpb.netty.demo3;

import io.netty.bootstrap.Bootstrap;

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.NioSocketChannel;

import io.netty.handler.codec.DelimiterBasedFrameDecoder;

import io.netty.handler.codec.string.StringDecoder;

/**

  • DelimiterBasedFrameDecoder 案例 客户端

  • @author 波波烤鸭

  • @email dengpbs@163.com

*/

public class EchoClient {

public static void main(String[] args) throws Exception {

int port = 8080;

if (args != null && args.length > 0) {

try {

port = Integer.valueOf(args[0]);

} catch (NumberFormatException e) {

// 采用默认值

}

}

new EchoClient().connector(port, “127.0.0.1”);

}

public void connector(int port, String host) throws Exception {

// 配置客户端NIO线程组

EventLoopGroup group = new NioEventLoopGroup();

try {

Bootstrap b = new Bootstrap();

b.group(group).channel(NioSocketChannel.class)

.option(ChannelOption.TCP_NODELAY, true)

.handler(new ChannelInitializer() {

@Override

protected void initChannel(SocketChannel ch) throws Exception {

// TODO Auto-generated method stub

// 1.定义分隔符

ByteBuf delimiter = Unpooled.copiedBuffer(“$_”.getBytes());

// 2.添加分隔符解码器

ch.pipeline().addLast(new DelimiterBasedFrameDecoder(1024, delimiter));

// 3.添加字符串处理解码器

ch.pipeline().addLast(new StringDecoder());

// 4.添加自定义的处理器

ch.pipeline().addLast(new EchoClientHandler());

}

});

// 发起异步连接操作

ChannelFuture f = b.connect(host, port).sync();

// 等待客户端链路关闭

f.channel().closeFuture().sync();

} finally {

// 优雅退出,释放NIO线程组

group.shutdownGracefully();

}

}

}

EchoClientHandler

package com.dpb.netty.demo3;

import io.netty.buffer.Unpooled;

import io.netty.channel.ChannelHandlerAdapter;

import io.netty.channel.ChannelHandlerContext;

/**

  • DelimiterBasedFrameDecoder 案例

  • 自定义客户端处理器

  • @author 波波烤鸭

  • @email dengpbs@163.com

*/

public class EchoClientHandler extends ChannelHandlerAdapter{

最后

面试是跳槽涨薪最直接有效的方式,马上金九银十来了,各位做好面试造飞机,工作拧螺丝的准备了吗?

掌握了这些知识点,面试时在候选人中又可以夺目不少,暴击9999点。机会都是留给有准备的人,只有充足的准备,才可能让自己可以在候选人中脱颖而出。

lHandlerContext;

/**

  • DelimiterBasedFrameDecoder 案例

  • 自定义客户端处理器

  • @author 波波烤鸭

  • @email dengpbs@163.com

*/

public class EchoClientHandler extends ChannelHandlerAdapter{

最后

面试是跳槽涨薪最直接有效的方式,马上金九银十来了,各位做好面试造飞机,工作拧螺丝的准备了吗?

掌握了这些知识点,面试时在候选人中又可以夺目不少,暴击9999点。机会都是留给有准备的人,只有充足的准备,才可能让自己可以在候选人中脱颖而出。

[外链图片转存中…(img-qMDTh00d-1714430494511)]

[外链图片转存中…(img-SMrP0Bnn-1714430494512)]

本文已被CODING开源项目:【一线大厂Java面试题解析+核心总结学习笔记+最新讲解视频+实战项目源码】收录

  • 18
    点赞
  • 17
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值