POM文件配置
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.taowd.socket</groupId> <artifactId>SocketDemo2</artifactId> <version>0.0.1-SNAPSHOT</version> <dependencies> <!-- https://mvnrepository.com/artifact/io.netty/netty-all --> <dependency> <groupId>io.netty</groupId> <artifactId>netty-all</artifactId> <version>4.1.6.Final</version> </dependency> </dependencies> </project>
服務端代碼
EchoServer.java
package Server; import java.nio.charset.Charset; import io.netty.bootstrap.ServerBootstrap; 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.bytes.ByteArrayEncoder; import io.netty.handler.codec.string.StringEncoder; public class EchoServer { private final int port; public EchoServer(int port) { this.port = port; } public void start() throws Exception { EventLoopGroup bossGroup = new NioEventLoopGroup(); EventLoopGroup group = new NioEventLoopGroup(); try { ServerBootstrap sb = new ServerBootstrap(); sb.option(ChannelOption.SO_BACKLOG, 1024); sb.group(group, bossGroup) // 綁定線程池 .channel(NioServerSocketChannel.class) // 指定使用的channel .localAddress(this.port)// 綁定監聽端口 .childHandler(new ChannelInitializer<SocketChannel>() { // 綁定客戶端連接時候觸發操作 @Override protected void initChannel(SocketChannel ch) throws Exception { System.out.println("報告"); System.out.println("信息:有一客戶端鏈接到本服務端"); System.out.println("IP:" + ch.localAddress().getHostName()); System.out.println("Port:" + ch.localAddress().getPort()); System.out.println("報告完畢"); ch.pipeline().addLast(new StringEncoder(Charset.forName("GBK"))); ch.pipeline().addLast(new EchoServerHandler()); // 客戶端觸發操作 ch.pipeline().addLast(new ByteArrayEncoder()); } }); ChannelFuture cf = sb.bind().sync(); // 服務器異步創建綁定 System.out.println(EchoServer.class + " 啟動正在監聽: " + cf.channel().localAddress()); cf.channel().closeFuture().sync(); // 關閉服務器通道 } finally { group.shutdownGracefully().sync(); // 釋放線程池資源 bossGroup.shutdownGracefully().sync(); } } public static void main(String[] args) throws Exception { new EchoServer(8888).start(); // 啟動 } }
EchoServerHandler.java
package Server; import java.io.BufferedOutputStream; import java.io.File; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.UnsupportedEncodingException; import java.text.SimpleDateFormat; import java.util.Date; import io.netty.buffer.ByteBuf; import io.netty.buffer.Unpooled; import io.netty.channel.ChannelFutureListener; import io.netty.channel.ChannelHandlerContext; import io.netty.channel.ChannelInboundHandlerAdapter; public class EchoServerHandler extends ChannelInboundHandlerAdapter { /* * channelAction * * channel 通道 action 活躍的 * * 當客戶端主動鏈接服務端的鏈接后,這個通道就是活躍的了。也就是客戶端與服務端建立了通信通道並且可以傳輸數據 * */ public void channelActive(ChannelHandlerContext ctx) throws Exception { System.out.println(ctx.channel().localAddress().toString() + " 通道已激活!"); } /* * channelInactive * * channel 通道 Inactive 不活躍的 * * 當客戶端主動斷開服務端的鏈接后,這個通道就是不活躍的。也就是說客戶端與服務端的關閉了通信通道並且不可以傳輸數據 * */ public void channelInactive(ChannelHandlerContext ctx) throws Exception { System.out.println(ctx.channel().localAddress().toString() + " 通道不活躍!"); // 關閉流 } /** * * @author Taowd * TODO 此處用來處理收到的數據中含有中文的時 出現亂碼的問題 * 2017年8月31日 下午7:57:28 * @param buf * @return */ private String getMessage(ByteBuf buf) { byte[] con = new byte[buf.readableBytes()]; buf.readBytes(con); try { return new String(con, "UTF-8"); } catch (UnsupportedEncodingException e) { e.printStackTrace(); return null; } } /** * 功能:讀取服務器發送過來的信息 */ @Override public void channelRead(ChannelHandlerContext ctx, Object msg) throws Exception { // 第一種:接收字符串時的處理 ByteBuf buf = (ByteBuf) msg; String rev = getMessage(buf); System.out.println("客戶端收到服務器數據:" + rev); } /** * 功能:讀取完畢客戶端發送過來的數據之后的操作 */ @Override public void channelReadComplete(ChannelHandlerContext ctx) throws Exception { System.out.println("服務端接收數據完畢.."); // 第一種方法:寫一個空的buf,並刷新寫出區域。完成后關閉sock channel連接。 ctx.writeAndFlush(Unpooled.EMPTY_BUFFER).addListener(ChannelFutureListener.CLOSE); // ctx.flush(); // ctx.flush(); // // 第二種方法:在client端關閉channel連接,這樣的話,會觸發兩次channelReadComplete方法。 // ctx.flush().close().sync(); // 第三種:改成這種寫法也可以,但是這中寫法,沒有第一種方法的好。 } /** * 功能:服務端發生異常的操作 */ @Override public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception { ctx.close(); System.out.println("異常信息:\r\n" + cause.getMessage()); } }
客戶端代碼
EchoClient.java
package Cilent; import java.net.InetSocketAddress; import java.nio.charset.Charset; import io.netty.bootstrap.Bootstrap; 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.bytes.ByteArrayEncoder; import io.netty.handler.codec.string.StringEncoder; import io.netty.handler.stream.ChunkedWriteHandler; public class EchoClient { private final String host; private final int port; public EchoClient() { this(0); } public EchoClient(int port) { this("localhost", port); } public EchoClient(String host, int port) { this.host = host; this.port = port; } public void start() throws Exception { EventLoopGroup group = new NioEventLoopGroup(); try { Bootstrap b = new Bootstrap(); b.group(group) // 注冊線程池 .channel(NioSocketChannel.class) // 使用NioSocketChannel來作為連接用的channel類 .remoteAddress(new InetSocketAddress(this.host, this.port)) // 綁定連接端口和host信息 .handler(new ChannelInitializer<SocketChannel>() { // 綁定連接初始化器 @Override protected void initChannel(SocketChannel ch) throws Exception { System.out.println("正在連接中..."); ch.pipeline().addLast(new StringEncoder(Charset.forName("GBK"))); ch.pipeline().addLast(new EchoClientHandler()); ch.pipeline().addLast(new ByteArrayEncoder()); ch.pipeline().addLast(new ChunkedWriteHandler()); } }); // System.out.println("服務端連接成功.."); ChannelFuture cf = b.connect().sync(); // 異步連接服務器 System.out.println("服務端連接成功..."); // 連接完成 cf.channel().closeFuture().sync(); // 異步等待關閉連接channel System.out.println("連接已關閉.."); // 關閉完成 } finally { group.shutdownGracefully().sync(); // 釋放線程池資源 } } public static void main(String[] args) throws Exception { new EchoClient("127.0.0.1", 8888).start(); // 連接127.0.0.1/65535,並啟動 } }
EchoClientHandler.java
package Cilent; import java.nio.charset.Charset; import io.netty.buffer.ByteBuf; import io.netty.buffer.ByteBufUtil; import io.netty.buffer.Unpooled; import io.netty.channel.ChannelHandlerContext; import io.netty.channel.SimpleChannelInboundHandler; import io.netty.util.CharsetUtil; public class EchoClientHandler extends SimpleChannelInboundHandler<ByteBuf> { /** * 向服務端發送數據 */ @Override public void channelActive(ChannelHandlerContext ctx) throws Exception { System.out.println("客戶端與服務端通道-開啟:" + ctx.channel().localAddress() + "channelActive"); String sendInfo = "Hello 這里是客戶端 你好啊!"; System.out.println("客戶端准備發送的數據包:" + sendInfo); ctx.writeAndFlush(Unpooled.copiedBuffer(sendInfo, CharsetUtil.UTF_8)); // 必須有flush } /** * channelInactive * * channel 通道 Inactive 不活躍的 * * 當客戶端主動斷開服務端的鏈接后,這個通道就是不活躍的。也就是說客戶端與服務端的關閉了通信通道並且不可以傳輸數據 * */ public void channelInactive(ChannelHandlerContext ctx) throws Exception { System.out.println("客戶端與服務端通道-關閉:" + ctx.channel().localAddress() + "channelInactive"); } @Override protected void channelRead0(ChannelHandlerContext ctx, ByteBuf msg) throws Exception { System.out.println("讀取客戶端通道信息.."); ByteBuf buf = msg.readBytes(msg.readableBytes()); System.out.println( "客戶端接收到的服務端信息:" + ByteBufUtil.hexDump(buf) + "; 數據包為:" + buf.toString(Charset.forName("utf-8"))); } @Override public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception { ctx.close(); System.out.println("異常退出:" + cause.getMessage()); } }