`

Netty TCP粘包/拆包 自定义字符串和字符串长度 2种分包方式

 
阅读更多
package bhz.netty.ende1;

import java.nio.ByteBuffer;

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;
import io.netty.handler.codec.string.StringEncoder;

public class Server {

	/**
	 * 用分隔符区分每条请求信息
	 */
	public static void main(String[] args) throws Exception{
		//1 创建2个线程,一个是负责接收客户端的连接。一个是负责进行数据传输的
		EventLoopGroup pGroup = new NioEventLoopGroup();
		EventLoopGroup cGroup = new NioEventLoopGroup();
		
		//2 创建服务器辅助类
		ServerBootstrap b = new ServerBootstrap();
		b.group(pGroup, cGroup)
		 .channel(NioServerSocketChannel.class)
		 .option(ChannelOption.SO_BACKLOG, 1024)
		 .option(ChannelOption.SO_SNDBUF, 32*1024)
		 .option(ChannelOption.SO_RCVBUF, 32*1024)
		 .childHandler(new ChannelInitializer<SocketChannel>() {
			@Override
			protected void initChannel(SocketChannel sc) throws Exception {
				//设置特殊分隔符 (这样就可以判断每次请求什么时候结束)
				ByteBuf buf = Unpooled.copiedBuffer("$_".getBytes());
                                 //设置定长字符串接收
				//sc.pipeline().addLast(new FixedLengthFrameDecoder(5));
				sc.pipeline().addLast(new DelimiterBasedFrameDecoder(1024, buf));
				//设置字符串形式的解码(这样服务器端就可以以字符串形式接收到数据)
				sc.pipeline().addLast(new StringDecoder());
				sc.pipeline().addLast(new ServerHandler());
			}
		});
		
		//4 绑定连接
		ChannelFuture cf = b.bind(8765).sync();
		
		//等待服务器监听端口关闭
		cf.channel().closeFuture().sync();
		pGroup.shutdownGracefully();
		cGroup.shutdownGracefully();
		
	}
	
}

 

package bhz.netty.ende1;

import io.netty.bootstrap.Bootstrap;
import io.netty.buffer.ByteBuf;
import io.netty.buffer.Unpooled;
import io.netty.channel.ChannelFuture;
import io.netty.channel.ChannelInitializer;
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.FixedLengthFrameDecoder;
import io.netty.handler.codec.string.StringDecoder;
import io.netty.handler.codec.string.StringEncoder;

public class Client {

	public static void main(String[] args) throws Exception {
		
		EventLoopGroup group = new NioEventLoopGroup();
		
		Bootstrap b = new Bootstrap();
		b.group(group)
		 .channel(NioSocketChannel.class)
		 .handler(new ChannelInitializer<SocketChannel>() {
			@Override
			protected void initChannel(SocketChannel sc) throws Exception {
				//自定义字符串分包符号
				ByteBuf buf = Unpooled.copiedBuffer("$_".getBytes());
                                //通过设置每次字符串长度分包
		                //sc.pipeline().addLast(new FixedLengthFrameDecoder(5));
				sc.pipeline().addLast(new DelimiterBasedFrameDecoder(1024, buf));
				sc.pipeline().addLast(new StringDecoder());
				sc.pipeline().addLast(new ClientHandler());
			}
		});
		
		ChannelFuture cf = b.connect("127.0.0.1", 8765).sync();
		
		cf.channel().writeAndFlush(Unpooled.wrappedBuffer("bbbb$_".getBytes()));
		cf.channel().writeAndFlush(Unpooled.wrappedBuffer("cccc$_".getBytes()));
		
		
		//等待客户端端口关闭
		cf.channel().closeFuture().sync();
		group.shutdownGracefully();
		
	}
}

 

package bhz.netty.ende1;

import io.netty.buffer.Unpooled;
import io.netty.channel.ChannelHandlerAdapter;
import io.netty.channel.ChannelHandlerContext;

public class ServerHandler extends ChannelHandlerAdapter {


	@Override
	public void channelActive(ChannelHandlerContext ctx) throws Exception {
		System.out.println(" server channel active... ");
	}

	@Override
	public void channelRead(ChannelHandlerContext ctx, Object msg) throws Exception {
		//服务器直接以字符串形式接收到数据
		String request = (String)msg;
		System.out.println("Server :" + msg);
		String response = "服务器响应:" + msg ;
		ctx.writeAndFlush(Unpooled.copiedBuffer(response.getBytes()));
	}

	@Override
	public void channelReadComplete(ChannelHandlerContext ctx) throws Exception {
		
	}

	@Override
	public void exceptionCaught(ChannelHandlerContext ctx, Throwable t) throws Exception {
		ctx.close();
	}




}

 

package bhz.netty.ende1;

import io.netty.channel.ChannelHandlerAdapter;
import io.netty.channel.ChannelHandlerContext;
import io.netty.util.ReferenceCountUtil;

public class ClientHandler extends ChannelHandlerAdapter{

	@Override
	public void channelActive(ChannelHandlerContext ctx) throws Exception {
		System.out.println("client channel active... ");
	}

	@Override
	public void channelRead(ChannelHandlerContext ctx, Object msg) throws Exception {
		try {
			String response = (String)msg;
			System.out.println("Client: " + response);
		} finally {
			ReferenceCountUtil.release(msg);
		}
	}

	@Override
	public void channelReadComplete(ChannelHandlerContext ctx) throws Exception {
	}

	@Override
	public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception {
		ctx.close();
	}

}

 

分享到:
评论

相关推荐

    使用Netty解决TCP粘包和拆包问题过程详解

    使用Netty解决TCP粘包和拆包问题过程详解 Netty是一个流行的Java网络编程框架,提供了简洁、灵活的API来处理网络编程的各种问题。其中,解决TCP粘包和拆包问题是Netty的一个重要应用场景。本文将详细介绍使用Netty...

    Netty粘包-拆包应用案例及解决方案分析.docx

    LineBasedFrameDecoder 是 Netty 提供的一种编解码器,用于解决 TCP 粘包/拆包问题。它可以将接收到的数据包拆分成多个小的数据包,以确保数据传输的正确性。StringDecoder 是 Netty 提供的一种编解码器,用于将字符...

    unity实现Socket通讯(内含tcp粘包/拆包解决)

    - 特殊分隔符:在数据包间使用特定的分隔符,如换行符或自定义的分隔字符串。 - 协议框架:设计一套完整的协议框架,如Netty或protobuf,它们提供自动的粘包/拆包处理。 五、实现步骤 1. 设计消息结构:定义消息的...

    Netty精粹之TCP粘包拆包问题

    ### Netty精粹之TCP粘包拆包问题详解 #### 一、引言 在网络通信领域,尤其是在基于TCP协议的应用程序开发中,经常会遇到“粘包”和“拆包”的问题。这些问题虽然属于较为底层的技术细节,但对于保障数据传输的准确...

    c++服务器 拆包粘包 过程

    在计算机网络编程中,"拆包"和"粘包"是TCP协议中常见的问题,尤其在C++服务器开发中,理解并处理好这两个概念对于构建高效稳定的网络服务至关重要。TCP是一种面向连接的、可靠的传输层协议,它通过流式传输确保数据...

    Netty中粘包和拆包的解决方案.docx

    在TCP网络编程中,粘包和拆包是常见的问题,...总的来说,Netty通过提供一系列的解码器,使得处理TCP粘包和拆包问题变得更加便捷,开发者可以根据实际业务需求灵活选择或自定义解码策略,保证数据的正确传输和解析。

    Netty 粘包/半包原理与拆包实战 源码

    本实例是《Netty 粘包/半包原理与拆包实战》 一文的源代码工程。 大家好,我是作者尼恩。 在前面的文章中,完成了一个高性能的 Java 聊天程序,尼恩已经再一次的进行了通讯协议的选择。放弃了大家非常熟悉的json ...

    Netty粘包与拆包源码

    在TCP/IP协议中,由于数据的传输是以字节流的方式进行,如果不对数据进行适当的处理,就可能出现“粘包”和“拆包”的问题。本文将深入探讨Netty中如何处理这两个问题,并通过源码分析来理解其内部机制。 “粘包”...

    Netty 粘包/半包原理与拆包实战 【源代码 新】

    - 本实例是《Netty 粘包/半包原理与拆包实战》 一文的源代码工程。 大家好,我是作者尼恩。 在前面的文章中,完成了一个高性能的 Java 聊天程序,尼恩已经再一次的进行了通讯协议的选择。放弃了大家非常熟悉的json...

    粘包和拆包及Netty解决方案.docx

    ### 粘包和拆包及Netty解决方案 #### 一、粘包和拆包问题概述 在计算机网络通信中,特别是在使用TCP/IP协议栈进行数据传输的过程中,常常会遇到粘包和拆包的问题。这类问题主要出现在客户端和服务端通过TCP连接...

    netty拆包粘包解决方案示例

    本文将深入探讨Netty中解决拆包粘包问题的策略,以及客户端断线重连的实现方式。 首先,我们需要理解什么是“拆包”和“粘包”。在TCP/IP通信中,由于TCP协议的流式传输特性,数据可能会被分片或者合并,这就可能...

    面试题:聊聊TCP的粘包、拆包以及解决方案.docx

    TCP的粘包和拆包是网络编程中遇到的常见问题,尤其在基于TCP协议的通讯中,如RPC框架和Netty等。TCP是一种面向字节流的协议,它没有明确的数据包边界,这可能导致发送的数据在接收端看起来像是被粘在一起或是被拆...

    Netty粘包拆包问题解决方案

    * LengthFieldBasedFrameDecoder(自定义长度来分包) 在使用 Netty 时,可以根据实际情况选择合适的解码器来解决粘包和拆包问题。 在上面的示例代码中,我们使用了 LengthFieldBasedFrameDecoder 来解决粘包和...

    netty搭建tcp服务,粘拆包解决

    下面我们将深入探讨Netty如何搭建TCP服务以及它如何解决粘包和拆包的问题。 首先,TCP本身并不区分消息边界,它只是一个字节流的传输层协议,这意味着连续发送的多个数据包可能会被合并成一个大的数据包发送,或者...

    reactor-netty, TCP/HTTP/UDP 客户机/服务器,带有联网的反应器.zip

    reactor-netty, TCP/HTTP/UDP 客户机/服务器,带有联网的反应器 反应器联网 http://projectreactor.io/docs/netty/release/api/在软件许可证 2.0许可,,,。

    Netty粘包拆包解决方案.docx

    总的来说,Netty提供的解码器机制使得开发者无需深入理解TCP底层细节,也能有效地解决粘包和拆包问题,提高了网络通信的可靠性和效率。通过选择合适的解码器并合理配置,我们可以构建出健壮的网络应用。

    java Netty作为客户端/服务端处理tcp报文

    报文格式8位长度加内容,代码还对netty的粘包和拆包做了处理

    netty解析报文,解决粘包拆包

    注:下载前请查看本人博客文章,看是否...里面包含模拟TCP客户端发送报文工具,硬件厂商提供的协议,服务端(springboot+netty)解析报文源码,源码里整合了redis,不需要可自行删除,如有需要客户端代码,可联系我。

    Netty粘包分包服务器端客户端完整例子

    Netty提供了解决粘包和分包的策略,其中`LineBasedFrameDecoder`和`DelimiterBasedFrameDecoder`是两种常用的解码器。 1. **LineBasedFrameDecoder**:这个解码器用于处理以特定换行符(如`\n`或`\r\n`)作为消息...

Global site tag (gtag.js) - Google Analytics