1. 程式人生 > >程式設計實現檔案拷貝

程式設計實現檔案拷貝

package com.java.test;

import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;

public class MyUtil {
	 private MyUtil() {
	        throw new AssertionError();
	    }
	    
	    public static void fileCopy(String source,String target) throws IOException{
	        try(InputStream in = new FileInputStream(source)){
	            try(OutputStream out= new FileOutputStream(target)){
	                byte[] buffer= new byte[4096];
	                int bytesToRead;
	                while((bytesToRead = in.read(buffer))!=-1){
	                    out.write(buffer,0,bytesToRead);
	                }
	            }
	        }
	    }
	    
	    public static void main(String args[]) {
	        try{
	            fileCopy("D://test.txt","D://copy.txt");
	        }catch(IOException e){
	            e.printStackTrace();
	        }	        
	    }

}
假如你要讀取的檔案內容如下:
asfdfsda
hghjh
fdf
rewterter
說一下in.read(buffer)的返回值,返回值是你讀進緩衝區的字元個數,也就是
如果此時讀入的是第一行,那麼bytesToRead 就等於8,是第二行那麼bytesToRead 就等於5,第三行是3,第四行是9,第五行是結尾那麼讀入的沒有東西,bytesToRead 就是-1,此時不滿足迴圈條件,那麼跳出迴圈,讀取檔案結束。bytesToRead 是多少是看讀入buffer了多少個字元,每次都是變化的!而由於每次都是讀入多少就寫出多少,也就是讀入的是什麼,寫出的就是什麼,所以並不會出現覆蓋情況!