Java复制文件以及文件夹到指定位置

将文件夹下的内容复制到指定路径下(保持原结构)

    /**
     * 将文件夹下的内容复制到指定路径下(保持原结构)
     * @param sourcePath
     * @param targetPath
     */
    public static void copyDir(String sourcePath,String targetPath) {
        File file = new File(sourcePath);
        //标记1(两处作用相同)
        File targetFile = new File(targetPath);//递归循环走此处一定是文件夹,所以创建为下一级文件夹
        if (!targetFile.exists()) {
            targetFile.mkdirs();
        }
        if (file.isDirectory()){
            File[] listFiles = file.listFiles();
            for (File listFile : listFiles) {
                String targetPathNew = targetPath + File.separator+ listFile.getName();
                if (listFile.isDirectory()){
                    copyDir(listFile.getPath(),targetPathNew);
                }else{
                    copyFile(listFile.getPath(), targetPathNew);
                }
            }
        }else{
            copyFile(sourcePath, targetPath);
        }
    }

将文件复制到指定路径下

  /**
     * 将文件复制到指定路径下
     * @param sourcePath
     * @param targetPath
     */
    public static void copyFile(String sourcePath, String targetPath) {
        File sourceFile = new File(sourcePath);
        File targetFile = new File(targetPath);
        FileInputStream inputStream = null;
        FileOutputStream outputStream = null;
        try {
            inputStream = new FileInputStream(sourceFile);
            outputStream = new FileOutputStream(targetFile);
            byte[] bytes = new byte[1024];
            int len = 0;
            while ((len = inputStream.read(bytes)) != -1) {
                outputStream.write(bytes, 0, len);
            }
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            try {
                if (inputStream != null) {
                    inputStream.close();
                }
                if (outputStream != null) {
                    outputStream.close();
                }
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
  • 2
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值