java復制文件夾中的所有文件和文件夾到另一個文件夾中


1.復制文件夾

public static void copyDir(String oldPath, String newPath) throws IOException {
        File file = new File(oldPath);
//文件名稱列表 String[] filePath
= file.list(); if (!(new File(newPath)).exists()) { (new File(newPath)).mkdir(); } for (int i = 0; i < filePath.length; i++) { if ((new File(oldPath + file.separator + filePath[i])).isDirectory()) { copyDir(oldPath + file.separator + filePath[i], newpath + file.separator + filePath[i]); } if (new File(oldPath + file.separator + filePath[i]).isFile()) { copyFile(oldPath + file.separator + filePath[i], newpath + file.separator + filePath[i]); } } }

2. 復制文件的方法

public static void copyFile(String oldPath, String newPath) throws IOException {
        File oldFile = new File(oldPath);
        File file = new File(newPath);
        FileInputStream in = new FileInputStream(oldFile);
        FileOutputStream out = new FileOutputStream(file);;

        byte[] buffer=new byte[2097152];
        
        while((in.read(buffer)) != -1){
            out.write(buffer);
        }  
 }

3. 測試

public static void main(String[] args) throws IOException {
        Scanner sc = new Scanner(System.in);
        System.out.println("請輸入源目錄:");
        String sourcePath = sc.nextLine();
        System.out.println("請輸入新目錄:");
        String path = sc.nextLine();
        
        //String sourcePath = "D://aa";
        //String path = "D://bb";
        
        copyDir(sourcePath, path);
    }

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM