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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© fouraa 中级黑马   /  2014-10-9 22:00  /  995 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

有会做的吗?

2 个回复

倒序浏览
具体题目是多少,发出来,我给你做一遍你看看
回复 使用道具 举报
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 CopyFile {
        public static void main(String[] args) throws IOException {
                //封装数据源
                File srefile = new File("d:\\copy");
                //判断是否存在文件夹
                if (!srefile.exists()){
                        System.out.println("数据源有问题");
                        System.exit(0);
                }
                File[] fileArray = srefile.listFiles();
                //封装目的地
                File destfile = new File("d:\\");
                if(!destfile.exists()){
                        destfile.mkdirs();
                }
                for(File file : fileArray){
                        String name = file.getName();
                        File tfile = new File(destfile, name);
                       
                        copyfile(file, tfile);
                }
        }
        public static void copyfile(File file, File tfile) throws IOException {
                BufferedInputStream bis = new BufferedInputStream(new FileInputStream(file));
                BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(tfile));
               
                byte[] by = new byte[1024];
                int len = 0;
                while ((len = bis.read(by)) != -1){
                        bos.write(by, 0, len);
                }
                bos.close();
                bis.close();
        }
}
希望对L、Z有帮助
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马