java:BIO, NIO
生活随笔
收集整理的這篇文章主要介紹了
java:BIO, NIO
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
?
BIO面向流.? ? ? ? ?阻塞式
?NIO面向緩沖區. 非阻塞式
?channnel負責傳輸,? ?buffer負責存儲.
?
?
import java.nio.ByteBuffer;public class TestBuffer {public static void main(String[] args) {TestBuffer.test2();}public static void test2() {String str = "abcde";ByteBuffer buf = ByteBuffer.allocate(1024);buf.put(str.getBytes());buf.flip();byte[] dst = new byte[buf.limit()];buf.get(dst,0,2);System.out.println(new String(dst,0,2));System.out.println(buf.position());buf.mark(); // 標記buf.get(dst,2,2);System.out.println(new String(dst,2,2));buf.reset(); // 恢復到mark的位置System.out.println(buf.position());// 判斷緩沖區中是否有剩余數據if(buf.hasRemaining()){// 獲取緩沖區中可以操作的數量System.out.println(buf.remaining());}}public static void test1(){String str = "abcde";//1. 分配一個指定大小的緩沖區ByteBuffer buf = ByteBuffer.allocate(1024);System.out.println(buf.capacity());System.out.println(buf.limit());System.out.println(buf.position());// 2. 利用put()存入數據到緩沖區buf.put(str.getBytes());// 3. 切換到讀取數據模式buf.flip();// 4. 利用get()讀取緩沖區數據byte[] dst = new byte[buf.limit()];buf.get(dst);System.out.println(new String(dst,0,dst.length));//5. rewind():可重復讀buf.rewind();// 6. clear清空緩沖區。但緩沖區中的數據依然存在。buf.clear();System.out.println(buf.capacity());System.out.println(buf.limit());System.out.println(buf.position());} }?
直接緩沖區域,非直接緩沖區
?直接緩沖區域:通過allocate()方法分配緩沖區,將緩沖區建立再jvm的內存中。
?非直接緩沖區:通過allocateDirect()方法分配直接緩沖區,將緩沖區建立在物理內存中。可以提高效率。
?
?
?通道(channel)
? channel本身不能直接訪問數據,channel只能與buffer進行交互。
??
總結
以上是生活随笔為你收集整理的java:BIO, NIO的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: java:juc一
- 下一篇: 常考数据结构与算法:反转链表