【说站】SocketChannel在java中实现客户端
2024-10-09
72
SocketChannel在java中实现客户端
1、步骤
(1)创建SocketChannel实例,并将其配置为非阻塞模式,只有在SocketChannel实例中,任何I/O操作都是非阻塞的。
(2)使用connect()方法连接服务器,同时使用while循环连续检测和完全连接。在需要立即进行I/O操作之前,必须使用finishConnect()来完成连接过程。
(3)用ByteBuffer读写字节,假如SelectableChannel是一种非阻塞模式,那么它的I/O操作读写字节可能比实际字节少,甚至没有。因此,我们使用循环连续的读写来确保读写完成。
2、实例
public class NonBlockingTCPClient { public static void main(String[] args) { byte[] data = "hello".getBytes(); SocketChannel channel = null; try { // 1. open a socket channel channel = SocketChannel.open(); // adjust to be nonblocking channel.configureBlocking(false); // 2. init connection to server and repeatedly poll with complete // connect() and finishConnect() are nonblocking operation, both return immediately if (!channel.connect(new InetSocketAddress(InetAddress.getLocalHost(), 8899))) { while (!channel.finishConnect()) { System.out.print("."); } } System.out.println("Connected to server..."); ByteBuffer writeBuffer = ByteBuffer.wrap(data); ByteBuffer readBuffer = ByteBuffer.allocate(data.length); int totalBytesReceived = 0; int bytesReceived; // 3. read and write bytes while (totalBytesReceived < data.length) { if (writeBuffer.hasRemaining()) { channel.write(writeBuffer); } if ((bytesReceived = channel.read(readBuffer)) == -1) { throw new SocketException("Connection closed prematurely"); } totalBytesReceived += bytesReceived; System.out.print("."); } System.out.println("Server said: " + new String(readBuffer.array())); } catch (IOException e) { e.printStackTrace(); } finally { // 4 .close socket channel try { if (channel != null) { channel.close(); } } catch (IOException e) { e.printStackTrace(); } } } }
以上就是SocketChannel在java中实现客户端的方法,希望对大家有所帮助。更多Java学习指路:Java基础
本教程操作环境:windows7系统、java10版,DELL G3电脑。
我的博客即将同步至腾讯云开发者社区,邀请大家一同入驻:https://cloud.tencent.com/developer/support-plan?invite_code=1t7egc96vi6rj
更新于:2个月前赞一波!1
相关文章
- 【说站】java中使用全局变量终止线程
- 【说站】java中UDP如何发送数据
- 【说站】java UDP通信的原理
- 【说站】java泛型接口的使用注意
- 【说站】java中UDP接收数据的步骤
- 【说站】java中TCP通信是什么
- 【说站】java方法参数中通配符的使用
- 【说站】java网络编程的三要素
- 【说站】java start()和run()的区别
- 【说站】java中并发和并行的概念
- 【说站】java守护线程的执行优先级
- 【说站】java泛型类的使用语法
- 【说站】java守护线程的注意事项
- 【说站】Java用户线程是什么
- 【说站】Java Executors中的四种线程池
- 【说站】java sleep()和wait()的区别
- 【说站】Java runnable和callable的异同
- 【说站】java进程和线程的关系
- 【说站】Java守护线程和用户线程的区别
- 【说站】python socket连接客户端的方法
文章评论
评论问答