Java-0024-用I/O實現拷貝檔案

weixin_34253539發表於2016-08-05

2016.8.5

若是檔案就拷貝,
若是資料夾就深層遍歷拷貝。

    public static void copy(String fileName,String newFileName){

        if(fileName==newFileName){
            System.out.println("檔名不能重複");
            return ;
        }

        File file = new File(fileName);
        File newFile = new File(newFileName);

        if(!file.exists()){
            System.out.println("檔案不存在,拷貝失敗!");
        }
        else if(file.isFile()){
            copyFile(fileName,newFileName);
        }
        else if(file.isDirectory()){
            newFile.mkdirs();

            for(String name:file.list()){
                System.out.println(name);
                copy(fileName+"\\"+name,newFileName+"\\"+name);
            }

        }

    }

具體拷貝方法
不過這個只適合拷貝文字,拷貝圖片之類的就不能成功拷貝了,檔案大小會變,也無法正常開啟
拷貝任意格式檔案參見下一個方法

    public static void copyFile(String fileName,String newName){

        File file = new File(fileName);
        File newFile = new File(newName);
        
        if(!file.exists()){
            System.out.println("檔案不存在,拷貝失敗!");
        }
        else if(file.isDirectory()){
            System.out.println("這不是一個檔案,拷貝失敗!");
        }
        else{
            //只能拷貝文字,拷貝其他並不能成功,大小會變,內容也亂了
            BufferedReader br=null;
            BufferedWriter bw=null;

            try {
                if(!newFile.exists()){
                    newFile.createNewFile();
                }

                FileReader reader = new FileReader(file);
                FileWriter writer = new FileWriter(newFile);
                br = new BufferedReader(reader);
                bw = new BufferedWriter(writer);

                String line=br.readLine();
                while(line!=null){
                    bw.write(line);
                    bw.newLine();
                    line=br.readLine();
                    bw.flush();
                }
                
                System.out.println("拷貝成功!");
            } catch (IOException e) {
                e.printStackTrace();
            } finally {
                if(br!=null){
                    try {
                        br.close();
                    } catch (IOException e) {
                        e.printStackTrace();
                    }
                }
                if(bw!=null){
                    try {
                        bw.close();
                    } catch (IOException e) {
                        e.printStackTrace();
                    }
                }
            }
        }   
    }

這個方法可以拷貝任意格式的檔案

    public static void copyFile(String fileName,String newName){

        File file = new File(fileName);
        File newFile = new File(newName);
        
        if(!file.exists()){
            System.out.println("檔案不存在,拷貝失敗!");
        }
        else if(file.isDirectory()){
            System.out.println("這不是一個檔案,拷貝失敗!");
        }
        else{
            //可以拷貝任意格式的檔案
            FileInputStream input=null;
            FileOutputStream output=null;
            byte[] b=new byte[128];
            int length;

            try {
                if(!newFile.exists()){
                    newFile.createNewFile();
                }

                input = new FileInputStream(file);
                output = new FileOutputStream(newFile);

                while(true){
                    length=input.read(b);
                    if(length==-1){
                        break;
                    }
                    output.write(b,0,length);
                    output.flush();
                }

                System.out.println("拷貝成功!");        
            } catch (IOException e) {
                e.printStackTrace();
            } finally {
                if(input!=null){
                    try {
                        input.close();
                    } catch (IOException e) {
                        e.printStackTrace();
                    }
                }
                if(output!=null){
                    try {
                        output.close();
                    } catch (IOException e) {
                        e.printStackTrace();
                    }
                }
            }
        }   
    }

相關文章