码迷,mamicode.com
首页 > 其他好文 > 详细

5、NIO--通道的数据传输

时间:2019-05-07 01:20:43      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:inpu   byte   tst   fileinput   实例   图片   bsp   写入   file   

 

 

 

 

 

实例1:

利用通完完成文件的复制

@Test
    public void test4() throws IOException{
                FileInputStream fis = new FileInputStream("d:\\a.jpg");
        FileOutputStream fos = new FileOutputStream("d:\\b.jpg");
        
        //获取通道
        FileChannel inChannel=fis.getChannel();
        FileChannel outChannel = fos.getChannel();
        
        //指定大小的缓冲区
        ByteBuffer buf = ByteBuffer.allocate(2048);
        
        //将通道中的数据存入缓冲区
        while(inChannel.read(buf) != -1){
            //切换成读取数据的模式
            buf.flip();
            
            //将缓冲区的数据写入通道
            outChannel.write(buf);
            
            //清空缓冲区
            buf.clear();
            
        }
        
        outChannel.close();
        inChannel.close();
        fos.close();
        fis.close();
        
    }

 

技术图片

 

5、NIO--通道的数据传输

标签:inpu   byte   tst   fileinput   实例   图片   bsp   写入   file   

原文地址:https://www.cnblogs.com/Mrchengs/p/10822963.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!