您好,登錄后才能下訂單哦!
這篇文章主要介紹“SocketChannel在java中如何實現客戶端”,在日常操作中,相信很多人在SocketChannel在java中如何實現客戶端問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”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中如何實現客戶端”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。