• java-通过IO流复制文件夹到指定目录


    public class copyDirectoryDemo {
    
        public static void main(String[] args) {
            File srcFolder = new File("C:\Users\MA\Desktop\IOtest");
            File destFolder = new File("C:\Users\MA\Desktop\IOtest\test");
            fun(srcFolder, destFolder);
        }
    
        public static void fun(File srcFolder, File destFolder) {
            File[] fileArray = srcFolder.listFiles();
            if (!destFolder.exists()) {
                destFolder.mkdir();
            }
            for (File file : fileArray) {
                if (file.isDirectory()) {
                    String folderName = file.getName();
                    File newDestFolder = new File(destFolder, folderName);
                    fun(file, newDestFolder);
                } else {
                    String fileName = file.getName();
                    File destFile = new File(destFolder, fileName);
                    copy(file, destFile);
                }
            }
        }
    
        public static void copy(File file, File destFile) {
            BufferedInputStream bis = null;
            BufferedOutputStream bos = null;
            try {
                bis = new BufferedInputStream(new FileInputStream(file));
                bos = new BufferedOutputStream(new FileOutputStream(destFile));
                byte[] bys = new byte[1024];
                int len = 0;
                while((len=bis.read(bys))!=-1){
                    bos.write(bys,0,len);
                    
                }
            } catch (FileNotFoundException e) {
                e.printStackTrace();
            }catch (IOException e){
                e.printStackTrace();
            }finally{
                if(bis!=null){
                    try {
                        bis.close();
                    } catch (IOException e) {
                        e.printStackTrace();
                    }
                }
                if(bos!=null){
                    try {
                        bos.close();
                    } catch (IOException e) {
                        e.printStackTrace();
                    }
                }
                
            }    
        }
    }
  • 相关阅读:
    谈一谈网站防盗链
    SEO优化步骤
    hls协议(最清晰的讲解)
    https比http到底那里安全?
    常见的php攻击(6种攻击详解)
    36)django-jsonp跨域
    35)django-验证码
    34)django-上传文件,图片预览功能实现
    33)django-原生ajax,伪ajax
    32)django-modelform
  • 原文地址:https://www.cnblogs.com/mxj961116/p/9348742.html
Copyright © 2020-2023  润新知