博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java copy 文件夹
阅读量:6271 次
发布时间:2019-06-22

本文共 1819 字,大约阅读时间需要 6 分钟。

import java.io.File;import java.io.FileInputStream;import java.io.FileOutputStream;import java.io.IOException;import java.util.Scanner;public class copy {    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);    }        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];        int readByte = 0;        while((readByte = in.read(buffer)) != -1){            out.write(buffer, 0, readByte);        }            in.close();        out.close();    }        public static void copyDir(String sourcePath, String newPath) throws IOException {        File file = new File(sourcePath);        String[] filePath = file.list();                if (!(new File(newPath)).exists()) {            (new File(newPath)).mkdir();        }                for (int i = 0; i < filePath.length; i++) {            if ((new File(sourcePath + file.separator + filePath[i])).isDirectory()) {                copyDir(sourcePath  + file.separator  + filePath[i], newPath  + file.separator + filePath[i]);            }                        if (new File(sourcePath  + file.separator + filePath[i]).isFile()) {                copyFile(sourcePath + file.separator + filePath[i], newPath + file.separator + filePath[i]);            }                    }    }}

 

转载地址:http://ublpa.baihongyu.com/

你可能感兴趣的文章
【算法之美】求解两个有序数组的中位数 — leetcode 4. Median of Two Sorted Arrays
查看>>
精度 Precision
查看>>
Android——4.2 - 3G移植之路之 APN (五)
查看>>
Linux_DHCP服务搭建
查看>>
[SilverLight]DataGrid实现批量输入(like Excel)(补充)
查看>>
秋式广告杀手:广告拦截原理与杀手组织
查看>>
翻译 | 摆脱浏览器限制的JavaScript
查看>>
闲扯下午引爆乌云社区“盗窃”乌云币事件
查看>>
02@在类的头文件中尽量少引入其他头文件
查看>>
JAVA IO BIO NIO AIO
查看>>
input checkbox 复选框大小修改
查看>>
网吧维护工具
查看>>
BOOT.INI文件参数
查看>>
vmstat详解
查看>>
新年第一镖
查看>>
unbtu使用笔记
查看>>
MaxCompute 学习计划(一)
查看>>
OEA 中 WPF 树型表格虚拟化设计方案
查看>>
Android程序开发初级教程(一) 开始 Hello Android
查看>>
使用Gradle打RPM包
查看>>