Java复制多极文件夹


package cn.lg.fileCopy;

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

/**
 * 需求:复制多极文件夹
 * 
 * 数据源:/Users/L/Desktop/JAVA基础视频/day01
 * 目的地:/Users/L/Desktop/书籍/123
 * 
 * 分析:(只能使用字节流)
 *      A:封装数据源File
 *      B:封装目的地File
 *      C:判断该File是文件夹还是文件
 *          a:是文件夹
 *              就在目的地目录下创建该文件夹
 *              获取该File对象下的所有文件或者文件夹File对象
 *              遍历得到每一个File对象
 *              回到C
 *          b:是文件
 *              就复制(字节流)
 * @author L
 * @date 2017年3月15日 下午7:09:48
 *
 */
public class CopyFoldersDemo {

    public static void main(String[] args) throws IOException{
        long start = System.currentTimeMillis();
        File srcFile = new File("/Users/L/Desktop/JAVA基础视频/day01");
        File targetFile = new File("/Users/L/Desktop/书籍/123");
        CopyFolder(srcFile,targetFile);
        long end = System.currentTimeMillis();
        System.out.println("copy文件夹结束,总共耗时:"+(end - start)+" 毫秒!");
    }

    /**
     * 复制目录下所有的文件
     * @param srcFile
     * @param newFile
     * @throws IOException 
     */
    private static void CopyFolder(File srcFile, File targetFile) throws IOException {
        //判断srcFile是否是文件夹
        if (srcFile.isDirectory()) {
            //文件夹
            File newFolder = new File(targetFile,srcFile.getName());//在newFile文件夹下创建新的文件夹
            newFolder.mkdir();//创建文件夹

            //获取File对象下的所有文件或者文件夹的File对象
            File[] files = srcFile.listFiles();
            for(File file:files){
                CopyFolder(file, newFolder);
            }
        }else {
            //文件
            File newFile = new File(targetFile,srcFile.getName());
            copyFiles(srcFile, newFile);
        }
    }

    /**
     * 复制单个文件到指定目录
     * @param file
     * @param newFolder
     * @throws IOException 
     */
    private static void copyFiles(File file, File newFile) throws IOException {

        BufferedInputStream br = new BufferedInputStream(new FileInputStream(file));
        BufferedOutputStream bw = new BufferedOutputStream(new FileOutputStream(newFile));
        byte[] bys= new byte[1024];
        int len = 0;
        while ((len=br.read(bys))!=-1) {
            bw.write(bys,0,len);
        }
        br.close();
        bw.close();

    }



}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值