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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

本帖最后由 多一点 于 2013-12-26 21:54 编辑

public static void main(String[] args) {
                //源文件夹
                String url1 = "D:\\exam\\";
                //目标文件夹
                String url2 = "D:\\exam_copy\\";
                //创建目标文件夹
                (new File(url2)).mkdir();//boolean类型的返回值
                //获取源文件夹下的目录和文件
                 File [] file=(new File(url1)).listFiles();
                 for(int i=0;i<file.length;i++){
                         if(file.isFile()){
                                /* String fileType = file.getName().substring(file.getName().lastIndexOf(".")+1);
                                 System.out.println(fileType);
                                 System.out.println(new File(url2+file.getName()));*/
//这里怎么编写
                                 copy(file,new File(url2+file.getName()));
                         }
                 }
        
        }

        public static void copy(File sourceFile, File newFile) {
                BufferedReader buffr = null;
                BufferedWriter buffw = null;
                try {
                        buffr = new BufferedReader(new FileReader(sourceFile));
                        buffw = new BufferedWriter(new FileWriter(newFile));
                        String line=null;
                        while((line=buffr.readLine())!=null){
                                buffw.write(line);
                                buffw.flush();
                        }
                } catch (IOException e) {
                        throw new RuntimeException("读写文件失败");
                }finally{
                        try {
                                if(buffr!=null)
                                buffr.close();
                        } catch (IOException e) {
                                throw new RuntimeException("读取文件失败");
                        }
                        try {
                                if(buffw!=null)
                                buffw.close();
                        } catch (IOException e) {
                                throw new RuntimeException("写入文件失败");
                        }
                }

        }

}

评分

参与人数 1技术分 +1 收起 理由
乔兵 + 1

查看全部评分

4 个回复

倒序浏览
新建文件时把文件名后缀名写上就行了:new File(url2+“copy.txt”);
回复 使用道具 举报
可以自己写路径嘛,比如说File file=new File("F:/a.txt").路径弄对应该就OK.
回复 使用道具 举报
哦 我试试  多谢 解忙
回复 使用道具 举报
已解决````````````````````` 谢谢
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马