Java:实现Nio方式实现tcp通信
1. 声明
当前内容主要为复习使用Nio方式实现tcp通信,实现tcp之间的信号传递和解析
2. Server端
/**
*
* @author hy
* @createTime 2022-02-12 09:48:24
* @description 当前内容为使用Nio方式操作socket进行通信操作
*
*/
public class NioServerSocketTest {
public static void main(String[] args) {
int threadCount = 2;
ServerSocketChannel serverSocketChannel = null;
try {
serverSocketChannel = ServerSocketChannel.open();
serverSocketChannel.bind(new In
共有 0 条评论