真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

SocketChannel在java中如何實(shí)現(xiàn)客戶端

這篇文章主要介紹“SocketChannel在java中如何實(shí)現(xiàn)客戶端”,在日常操作中,相信很多人在SocketChannel在java中如何實(shí)現(xiàn)客戶端問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”SocketChannel在java中如何實(shí)現(xiàn)客戶端”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!

創(chuàng)新互聯(lián)專注于灌南企業(yè)網(wǎng)站建設(shè),響應(yīng)式網(wǎng)站設(shè)計(jì),商城建設(shè)。灌南網(wǎng)站建設(shè)公司,為灌南等地區(qū)提供建站服務(wù)。全流程按需制作,專業(yè)設(shè)計(jì),全程項(xiàng)目跟蹤,創(chuàng)新互聯(lián)專業(yè)和態(tài)度為您提供的服務(wù)

1、步驟

(1)創(chuàng)建SocketChannel實(shí)例,并將其配置為非阻塞模式,只有在SocketChannel實(shí)例中,任何I/O操作都是非阻塞的。

(2)使用connect()方法連接服務(wù)器,同時(shí)使用while循環(huán)連續(xù)檢測和完全連接。在需要立即進(jìn)行I/O操作之前,必須使用finishConnect()來完成連接過程。

(3)用ByteBuffer讀寫字節(jié),假如SelectableChannel是一種非阻塞模式,那么它的I/O操作讀寫字節(jié)可能比實(shí)際字節(jié)少,甚至沒有。因此,我們使用循環(huán)連續(xù)的讀寫來確保讀寫完成。

2、實(shí)例

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();
            }
        }
    }
}

到此,關(guān)于“SocketChannel在java中如何實(shí)現(xiàn)客戶端”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!


本文題目:SocketChannel在java中如何實(shí)現(xiàn)客戶端
瀏覽地址:http://weahome.cn/article/ijdcih.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部