[java]利用IO流中的位元組流和緩衝流寫一個複製資料夾的小程式

朱同學發表於2019-03-05

大家好 新人報到
下面是一個複製資料夾的小程式

import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;

public class Test複製資料夾 {
	//複製檔案和資料夾的方法,傳入檔案則複製,傳入資料夾則將其傳入遍歷方法並建立對應資料夾
	public static void copyFile(String s,String t) {
		File source=new File(s);
		File target=new File(t);
		if(source.isFile()) {	//判斷是否為檔案,若是則開始複製檔案
			//建立快取位元組流
			BufferedInputStream bi=null;
			BufferedOutputStream bo=null;
			try {
				bi = new BufferedInputStream(new FileInputStream(source));
				bo = new BufferedOutputStream(new FileOutputStream(target));
				//開始複製
				byte[] buf=new byte[1024];
				int len;
				while((len=bi.read(buf))!=-1){
					bo.write(buf, 0, len);
				}
			} catch (FileNotFoundException e) {
				// TODO 自動生成的 catch 塊
				e.printStackTrace();
			} catch (IOException e) {
				// TODO 自動生成的 catch 塊
				e.printStackTrace();
			}
			//關閉
			try {
				if(bi!=null) {
					bi.close();
				}
				if(bo!=null) {
					bo.close();
				}
			} catch (IOException e) {
				// TODO 自動生成的 catch 塊
				e.printStackTrace();
			}
		}else {
			if(!target.exists()) {
				target.mkdir();
			}
			forEachFile(s, t);
		}
	}
	//分解傳入的資料夾,將子檔案和子資料夾傳回copyFile方法
	public static void forEachFile(String s,String t) {
		File source=new File(s);
		File target=new File(t);
		if(!source.isFile()) {
			File[] fileList= source.listFiles();
			for(File f:fileList) {
					copyFile(s+"\\"+f.getName(), t+"\\"+f.getName());
			}
		}
	}
	public static void main(String[] args) {
		String source="D:\\迅雷下載";
		String target="D:\\迅雷下載2";
		copyFile(source, target);
	}
}

相關文章