日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網為廣大站長提供免費收錄網站服務,提交前請做好本站友鏈:【 網站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(50元/站),

點擊這里在線咨詢客服
新站提交
  • 網站:51998
  • 待審:31
  • 小程序:12
  • 文章:1030137
  • 會員:747

NIO的三大核心配件

Java NIO的三大核心配件:通道、緩沖區、選擇器

 

channel(通道)

Buffer(緩沖區)

selector(選擇器)

 

案例介紹

讀寫切換

 

public static void main(String[] args) {
    //創建一個Buffer,大小為5,可就是可以存放5個int
 IntBuffer intBuffer=IntBuffer.allocate(5);
 for(int i=0;i<intBuffer.capacity();i++){
        intBuffer.put(i*2);
 }
    //讀寫切換
 intBuffer.flip();
 while(intBuffer.hasRemaining()){
        System.out.println(intBuffer.get());
 }
}

本地方法寫

public static void main(String[] args) throws IOException {
 String str="hello";
 //創建一個輸出流
 FileOutputStream fileOutputStream=new FileOutputStream("src/test/JAVA/com/hua/nio/a");
 //通過fileOutputStream獲取對應的FileChannel,這個FielChannel的真實類型是FileChannelImpl
 FileChannel fileChannel=fileOutputStream.getChannel();
 //創建一個緩沖區ByteBuffer
 ByteBuffer byteBuffer=ByteBuffer.allocate(1024);
 //將str放到byteBuffer
 byteBuffer.put(str.getBytes());
 //對byteBuffer.flip();
 byteBuffer.flip();
 //把byteBuffer的數據寫入到fileChannel
 fileChannel.write(byteBuffer);
 fileOutputStream.close();
}

本地方法讀

public static void main(String[] args) throws IOException {
    File file=new File("src/test/java/com/hua/nio/a");
 FileInputStream fileInputStream =new FileInputStream(file);
 FileChannel fileChannel=fileInputStream.getChannel();
 ByteBuffer byteBuffer= ByteBuffer.allocate((int)file.length());
 //將通道的數據讀入到Buffer
 fileChannel.read(byteBuffer);
 //將byteBuffer的字節數據轉成String
 System.out.println(new String(byteBuffer.array()));
 fileInputStream.close();
}

數據的雙向交互

 

public static void main(String[] args) throws IOException {
    FileInputStream fileInputStream=new FileInputStream("src/test/java/com/hua/nio/a");
 FileOutputStream fileOutputStream=new FileOutputStream("src/test/java/com/hua/nio/b");
 FileChannel fileChannel1=fileInputStream.getChannel();
 FileChannel fileChannel2=fileOutputStream.getChannel();
 ByteBuffer byteBuffer= ByteBuffer.allocate(512);
 while(true){
        //必須要clear,當下面fileChannel2的write的時候,此時的position會從0開始到limit,如果不clear回歸到原來,
 //當position和limit相等的時候,fileChannel1.read的返回結果為-1
 byteBuffer.clear();
 int read=fileChannel1.read(byteBuffer);
 System.out.println(read);
 if(read == -1){
            break;
 }
        byteBuffer.flip();
 fileChannel2.write(byteBuffer);
 }
    fileInputStream.close();
 fileOutputStream.close();
}

通道的數據轉換

public static void main(String[] args) throws IOException {
    FileInputStream fileInputStream =new FileInputStream("src/test/java/com/hua/nio/a");
 FileOutputStream fileOutputStream=new FileOutputStream("src/test/java/com/hua/nio/c");
 FileChannel fileChannel1=fileInputStream.getChannel();
 FileChannel fileChannel2=fileOutputStream.getChannel();
 fileChannel2.transferFrom(fileChannel1,0,fileChannel1.size());
 fileChannel1.close();
 fileChannel2.close();
 fileInputStream.close();
 fileOutputStream.close();
}

類型的buffer

public static void main(String[] args) {
    ByteBuffer buffer= ByteBuffer.allocate(64);
 buffer.putInt(100);
 buffer.putLong(5);
 buffer.putChar('天');
 buffer.putShort((short)11);
 buffer.flip();
 System.out.println();
 System.out.println(buffer.getInt());
 System.out.println(buffer.getLong());
 System.out.println(buffer.getChar());
 System.out.println(buffer.getShort());
}

只讀的buffer

public static void main(String[] args) {
    ByteBuffer buffer= ByteBuffer.allocate(64);
 for(int i=0;i<64;i++){
        buffer.put((byte)i);
 }
    buffer.flip();
 //設置byteBuffer是只讀的
 ByteBuffer readOnlyBuffer=buffer.asReadOnlyBuffer();
 System.out.println(readOnlyBuffer.getClass());
 while(readOnlyBuffer.hasRemaining()){
        System.out.println(readOnlyBuffer.get());
 }
}

內存上的修改

public static void main(String[] args) throws IOException {
    RandomaccessFile randomAccessFile=new RandomAccessFile("src/test/java/com/hua/nio/a","rw");
 FileChannel channel=randomAccessFile.getChannel();
 //FileChannel.MapMode.READ_WRITR使用的是讀寫模式
 //第一個參數表示直接修改的起始位置
 //第二個參數表示映射到內存的大小
 //也就是說我們只能修改0到4的索引位置,
 MAppedByteBuffer mappedByteBuffer=channel.map(FileChannel.MapMode.READ_WRITE,0,5);
 mappedByteBuffer.put(0,(byte)'H');
 mappedByteBuffer.put(2,(byte)'L');
 randomAccessFile.close();
}

分享到:
標簽:Java NIO
用戶無頭像

網友整理

注冊時間:

網站:5 個   小程序:0 個  文章:12 篇

  • 51998

    網站

  • 12

    小程序

  • 1030137

    文章

  • 747

    會員

趕快注冊賬號,推廣您的網站吧!
最新入駐小程序

數獨大挑戰2018-06-03

數獨一種數學游戲,玩家需要根據9

答題星2018-06-03

您可以通過答題星輕松地創建試卷

全階人生考試2018-06-03

各種考試題,題庫,初中,高中,大學四六

運動步數有氧達人2018-06-03

記錄運動步數,積累氧氣值。還可偷

每日養生app2018-06-03

每日養生,天天健康

體育訓練成績評定2018-06-03

通用課目體育訓練成績評定