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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

  1. import java.io.File;
  2. import java.io.BufferedInputStream;
  3. import java.io.BufferedOutputStream;
  4. import java.io.FileInputStream;
  5. import java.io.FileOutputStream;
  6. import java.io.IOException;
  7. //自己用EditPlus写的,绝非copy
  8. class CopyAllFiles
  9. {
  10.         public static void main(String[] args)
  11.         {
  12.                 //源目录
  13.                 File srcFolder=new File("D:\\KwDownload");
  14.                 //目的地目录
  15.                 File destFloder=new File("E:\\music");               
  16.                 long startTime=System.currentTimeMillis();
  17.                 //将源目录下的所有文件及文件夹复制到指定目录
  18.                 boolean flag=copyAllFiles(srcFolder,destFloder);
  19.                 long endTime=System.currentTimeMillis();
  20.                 long resultTime=endTime-startTime;               
  21.                 if(flag)
  22.                 {
  23.                         System.out.println("复制成功!共用时"+resultTime+"毫秒("+(resultTime/1000)+"秒)");
  24.                 }
  25.         }
  26.        
  27.         /**
  28.          * 文件及文件夹复制工具
  29.          * @param src 源目录
  30.          * @param dest 目的地目录
  31.          * @return flag 返回true表示复制成功,否则复制失败
  32.          */
  33.         public static boolean copyAllFiles(File src,File dest)
  34.         {
  35.                 boolean flag=false;
  36.                 if(!dest.exists())
  37.                 {
  38.                         dest.mkdir();
  39.                 }
  40.                 File[] fileArr=src.listFiles(); //将源目录下的对象封装进File数组
  41.                 for(File f:fileArr)          //遍历File中的对象
  42.                 {
  43.                         if(f.isDirectory())  //判断File对象是否是目录
  44.                         {
  45.                                 File newFolder=new File(dest,f.getName());
  46.                                 newFolder.mkdir(); //创建目的地目录创建遍历到的文件夹
  47.                                 copyAllFiles(f,newFolder);  //如果遍历到的是目录,递归循环操作
  48.                                 //System.out.println(f.getName()+"---"+newFolder.getName());
  49.                         }
  50.                         else
  51.                         {
  52.                                 //调用字节流复制方法
  53.                                 //CopyBinaryFile(f.getAbsolutePath(),dest.getAbsolutePath().concat("\\").concat(f.getName()));
  54.                                 CopyBinaryFile(f.getAbsolutePath(),new File(dest,f.getName()).getAbsolutePath());
  55.                                 //System.out.println(f.getAbsolutePath());                               
  56.                                 //System.out.println(new File(dest,f.getName()).getAbsolutePath());
  57.                         }
  58.                         if(f!=null)
  59.                         {
  60.                                 flag=true;
  61.                         }
  62.                 }               
  63.                 return flag;
  64.         }
  65.         /**
  66.          * 字节流文件复制工具
  67.          * @param src 数据源
  68.          * @param dest 目的地
  69.          * @return flag 如果为true,表示复制成功,否则,复制失败。
  70.          */
  71.        
  72.         public static boolean CopyBinaryFile(String src,String dest)
  73.         {
  74.                 boolean flag=false;               
  75.                 BufferedInputStream bis=null;               
  76.                 BufferedOutputStream bos=null;
  77.                 try
  78.                 {
  79.                         bis=new BufferedInputStream(new FileInputStream(src));
  80.                         bos=new BufferedOutputStream(new FileOutputStream(dest));
  81.                         byte[] bys=new byte[1024];
  82.                         int len=0;
  83.                         while((len=bis.read(bys))!=-1)
  84.                         {
  85.                                 //写入数据
  86.                                 bos.write(bys,0,len);
  87.                         }
  88.                 }
  89.                 catch (IOException ioe)
  90.                 {
  91.                         ioe.printStackTrace();
  92.                 }
  93.                 finally
  94.                 {
  95.                         if(bos!=null)
  96.                         {
  97.                                 try
  98.                                 {
  99.                                         //释放资源
  100.                                         bos.close();
  101.                                 }
  102.                                 catch (IOException ioe)
  103.                                 {
  104.                                         ioe.printStackTrace();
  105.                                 }
  106.                         }
  107.                         if(bis!=null)
  108.                         {
  109.                                 try
  110.                                 {
  111.                                         //释放资源
  112.                                         bis.close();
  113.                                         flag=true;
  114.                                 }
  115.                                 catch (IOException ioe)
  116.                                 {
  117.                                         ioe.printStackTrace();
  118.                                 }
  119.                         }                       
  120.                 }               
  121.                 return flag;
  122.         }
  123. }
复制代码

4 个回复

倒序浏览
你这个不是面向对象了,是面向过程了
回复 使用道具 举报 1 0
wangcongwu 发表于 2015-1-10 23:17
你这个不是面向对象了,是面向过程了

分享个思路而已,难道我还抽取几个类出来?发文件上传?有必要么?就算是面向对象这也只算是个工具类,也是用静态方法,用类名,方法名调用。
回复 使用道具 举报
谢谢分享
回复 使用道具 举报
看着很实用
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马