SocketChannel來連線到InetSocketAddress

Javalga發表於2005-03-07
開啟一個SocketChannel來連線到InetSocketAddress,用它來取代我們以前從套介面的輸入流來讀取、向套介面的輸出流寫入的所有操作:

SocketChannel channel = SocketChannel.open();
channel.connect(socketAddress);
<p class="indent">


在連線完成之後,你立刻可以使用ByteBuffer物件對這個通道進行讀寫


是不是隻有這個辦法才能完成讀寫通道????請指教!!!

相關文章