java NIO系列教程(十)

來源:互聯網
上載者:User

轉載自並發編程網 – ifeve.com本文連結地址: Java NIO系列教程(十) Java NIO DatagramChannel

Java NIO中的DatagramChannel是一個能收發UDP包的通道。因為UDP是不需連線的網路通訊協定,所以不能像其它通道那樣讀取和寫入。它發送和接收的是資料包。

開啟 DatagramChannel

下面是 DatagramChannel 的開啟檔案:

1 DatagramChannel channel = DatagramChannel.open();
2 channel.socket().bind(new InetSocketAddress(9999));

這個例子開啟的 DatagramChannel可以在UDP連接埠9999上接收資料包。 接收資料

通過receive()方法從DatagramChannel接收資料,如:

1 ByteBuffer buf = ByteBuffer.allocate(48);
2 buf.clear();
3 channel.receive(buf);

receive()方法會將接收到的資料包內容複寫到指定的Buffer. 如果Buffer容不下收到的資料,多出的資料將被丟棄。 發送資料

通過send()方法從DatagramChannel發送資料,如:

1 String newData = "New String to write to file..." + System.currentTimeMillis();
2  
3 ByteBuffer buf = ByteBuffer.allocate(48);
4 buf.clear();
5

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.