A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

下面是我写的字节流复制多级文件夹及其文件案例。
类名是:CopyDir
希望各位多提提优化建议!!!
  1. <b><font size="3">package cn.itcast_02;

  2. import java.io.File;
  3. import java.io.FileInputStream;
  4. import java.io.FileOutputStream;
  5. import java.io.IOException;

  6. public class CopyDirDemo {
  7.         public static void main(String[] args) throws IOException {
  8.                 File srcFolder = new File("D:\\copy1");
  9.                 File destFolder = new File("D:\\copy2");
  10.                 copyDir(srcFolder, destFolder);
  11.         }

  12.         public static void copyDir(File srcFolder, File destFolder) throws IOException {
  13.                 if (!destFolder.exists()) {
  14.                         destFolder.mkdir();
  15.                 }
  16.                 File[] array = srcFolder.listFiles();
  17.                 for (File file : array) {
  18.                         if (file.isFile()) {
  19.                                 copyFile(new File(srcFolder, file.getName()), new File(destFolder, file.getName()));
  20.                         } else {
  21.                                 copyDir(new File(srcFolder, file.getName()), new File(destFolder, file.getName()));
  22.                         }
  23.                 }
  24.         }

  25.         public static void copyFile(File srcFolder, File destFolder) throws IOException {
  26.                 FileOutputStream fos = new FileOutputStream(destFolder);
  27.                 FileInputStream fis = new FileInputStream(srcFolder);
  28.                 byte[] bys = new byte[1024];
  29.                 int len = 0;
  30.                 while ((len = fis.read(bys)) != -1) {
  31.                         fos.write(bys, 0, len);
  32.                 }
  33.                 fos.close();
  34.                 fis.close();
  35.         }
  36. }</font></b>
复制代码


2 个回复

倒序浏览
蔡锐 来自手机 中级黑马 2015-8-22 01:06:07
沙发
可以用BufferedInputStream和BufferedOutputStream包装一下,读取细节数组稍微大一点会更快一些

点评

总结得不错  发表于 2015-8-22 02:42
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马