资源简介
netty搭建tcp服务,并以相应的编码解决粘包,拆包问题
代码片段和文件信息
package com.study.netty;
import java.net.InetSocketAddress;
import io.netty.bootstrap.Bootstrap;
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.channel.socket.nio.NioSocketChannel;
import io.netty.handler.codec.LinebasedframeDecoder;
import io.netty.handler.codec.string.StringDecoder;
public class TimeClient {
public void connect (String hostint port){
//配置客户端nio线程组
EventLoopGroup group = new NioEventLoopGroup();
try {
//创建启动辅助类
Bootstrap b = new Bootstrap();
b.group(group).channel(NioSocketChannel.class)
.remoteAddress(new InetSocketAddress(host port))
.handler(new ChannelInitializer() {
@Override
protected void initChannel(SocketChannel arg0) throws Exception {
// TODO Auto-generated method stub
arg0.pipeline().addLast(new LinebasedframeDecoder(1024));//粘包和拆包问题处理
arg0.pipeline().addLast(new StringDecoder());//把接收的字节转为字符串
arg0.pipeline().addLast(new TimeClientHandle002());
}
});
//发起异步连接操作
ChannelFuture future = b.connect().sync();
//等待客户端链路关闭
future.channel().closeFuture().sync();
} catch (InterruptedException e) {
e.printStackTrace();
}finally {
//释放nio线程组
group.shutdownGracefully();
}
}
public static void main(String[] args) {
int port = 10001;
if(args != null && args.length > 0){
try {
port = Integer.valueOf(args[0]);
} catch (NumberFormatException e) {
e.printStackTrace();
}
}
for (int i = 0; i < 100; i++) {
new TimeClient().connect(“127.0.0.1“ port);
System.err.println(“循环第“+i+“次“);
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-05-10 10:53 nettytcpserver\
文件 557 2018-05-10 10:55 nettytcpserver\.classpath
文件 390 2018-05-10 10:53 nettytcpserver\.project
目录 0 2018-05-10 10:54 nettytcpserver\.settings\
文件 252 2018-05-10 10:54 nettytcpserver\.settings\org.eclipse.core.resources.prefs
文件 598 2018-05-10 10:53 nettytcpserver\.settings\org.eclipse.jdt.core.prefs
目录 0 2018-05-10 10:55 nettytcpserver\bin\
目录 0 2018-05-10 10:55 nettytcpserver\bin\com\
目录 0 2018-05-10 10:55 nettytcpserver\bin\com\study\
目录 0 2018-05-10 10:55 nettytcpserver\bin\com\study\netty\
文件 1504 2018-05-10 10:55 nettytcpserver\bin\com\study\netty\TimeClient$1.class
文件 2817 2018-05-10 10:55 nettytcpserver\bin\com\study\netty\TimeClient.class
文件 2937 2018-05-10 10:55 nettytcpserver\bin\com\study\netty\TimeClientHandle.class
文件 2968 2018-05-10 10:55 nettytcpserver\bin\com\study\netty\TimeClientHandle002.class
文件 2656 2018-05-10 10:55 nettytcpserver\bin\com\study\netty\TimeClientHandle01.class
文件 1473 2018-05-10 10:55 nettytcpserver\bin\com\study\netty\TimeServer$1.class
文件 1300 2018-05-10 10:55 nettytcpserver\bin\com\study\netty\TimeServer$ChildChannelHandle.class
文件 2568 2018-05-10 10:55 nettytcpserver\bin\com\study\netty\TimeServer.class
文件 2419 2018-05-10 10:55 nettytcpserver\bin\com\study\netty\TimeServerHandle.class
文件 2496 2018-05-10 10:55 nettytcpserver\bin\com\study\netty\TimeServerHandle01.class
目录 0 2018-05-10 10:55 nettytcpserver\lib\
文件 489884 2018-04-25 09:48 nettytcpserver\lib\log4j-1.2.17.jar
文件 2291648 2018-04-27 17:12 nettytcpserver\lib\netty-all-4.0.56.Final.jar
文件 26083 2018-04-25 09:48 nettytcpserver\lib\slf4j-api-1.7.2.jar
文件 8819 2018-04-25 09:48 nettytcpserver\lib\slf4j-log4j12-1.7.2.jar
目录 0 2018-05-10 10:54 nettytcpserver\src\
目录 0 2018-05-10 10:54 nettytcpserver\src\com\
目录 0 2018-05-10 10:54 nettytcpserver\src\com\study\
目录 0 2018-05-10 10:54 nettytcpserver\src\com\study\netty\
文件 2013 2018-05-10 10:54 nettytcpserver\src\com\study\netty\TimeClient.java
文件 1725 2018-05-10 10:54 nettytcpserver\src\com\study\netty\TimeClientHandle.java
............此处省略5个文件信息
相关资源
- ESP8266的 TCP通信(server)
- ESP8266的 TCP通信
- 车载wince音乐播放器
- TCP/IP网络互连--卷I 第5版•中文版
- window 网络调试助手 tcp/udp
- 通用TCP/UDP异步SOCKET通讯封装及Demo
- 通讯猫-mqtt测试软件
- WinTcpS7_SmartV35.rar
- MODBUS+TCP+RTU+ASCII调试工具
- TcpMonitor
- tcp/ip网络原理与技术
- TCPIP调试助手
- TCP通信客户端-Windows版
- tcp/udp调试助手
- DspSocketTest
- tcpip详解卷2实现 源码
- TCP网络调试助手
- TCP网速加速器.zip
- 基于TCP协议的Labview无线视频接收及显
- uc/tcp-ip代码
- TCP客户端与服务器
- MODBUS通讯协议中文版(带目录书签)
- 配置TCPIP SimaticNetV6.0和Intouch7.11 IOSer
- modbus TCPIP协议client-Server端源代码以及
- tcp测试工具30723
- Modbus协议规范中文版
- Socket的TCP、UDP通讯
- Qt用Tcp 和Udp 传图片的,对于没做过这
- Netty性能测试
- 组态王 Tcp 连接s7 200 smart PLC
评论
共有 条评论