码迷,mamicode.com
首页 > 编程语言 > 详细

java递归复制文件及文件夹

时间:2015-08-17 17:16:59      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:复制文件及文件夹

package base;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.File;
import java.io.InputStream;
import java.io.OutputStream;
public class copy {
    public static void main(String[] args) throws IOException {
        
        File s = new File("../Test");
        File t = new File("../yang");
        copyFolder(s,t);
    }
    /**
     * 复制一个目录及其子目录、文件到另外一个目录
     * @param src
     * @param dest
     * @throws IOException
     */  
    static void copyFolder(File src, File dest) throws IOException {  
        if (src.isDirectory()) {  
            if (!dest.exists()) {  
                dest.mkdir();  
            }  
            String files[] = src.list();  
            for (String file : files) {  
                File srcFile = new File(src, file);  
                File destFile = new File(dest, file);  
                // 递归复制  
                copyFolder(srcFile, destFile);  
            }  
        } else {  
            InputStream in = new FileInputStream(src);  
            OutputStream out = new FileOutputStream(dest);  
      
            byte[] buffer = new byte[1024];  
      
            int length;  
              
            while ((length = in.read(buffer)) > 0) {  
                out.write(buffer, 0, length);  
            }  
            in.close();  
            out.close();  
        }  
    }  
}

版权声明:本文为博主原创文章,未经博主允许不得转载。

java递归复制文件及文件夹

标签:复制文件及文件夹

原文地址:http://blog.csdn.net/u010552723/article/details/47727321

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