• 缓冲流(数据的复制粘贴)IO流


    package jinjieshilie;
    import java.io.*;
    
    public class huanchongliu {
    
    	public static void main(String[] args) throws Exception {
    		// TODO Auto-generated method stub
    		BufferedInputStream hcfz=new BufferedInputStream( new FileInputStream("H:/ab.java"));
    		BufferedOutputStream hczt=new BufferedOutputStream(new FileOutputStream("E:/ab.java"));
    		byte[] hc=new byte[2048];//数字是缓冲区大小,单位是字节
    		int ff;
    		ff=hcfz.read(hc);
    		while(ff!=(-1)){
    			hczt.write(hc,0,ff);
    			ff=hcfz.read(hc);
    		}
    		hczt.flush();//把最后在管道中的吸取出来
    		hczt.close();
    		hcfz.close();
    		
    	}
    
    }
    

      

  • 相关阅读:
    r语言
    pickle模块
    mongodb简介
    oracle
    mysql
    ceph
    迭代器
    python类
    encode&decode
    PHP 截取字符串中某两个字符(串)之间的字符串 考虑多个的情况
  • 原文地址:https://www.cnblogs.com/chenshibin/p/4549872.html
Copyright © 2020-2023  润新知