zoukankan      html  css  js  c++  java
  • 文件复制

     /**
         *
         * @param fromFile 被复制的文件
         * @param toFile 复制的目录文件
         * @param rewrite 是否重新创建文件
         *
         * <p>文件的复制操作方法
         */
        public static boolean copyfile(File fromFile, File toFile, Boolean rewrite) {
    
            if (!fromFile.exists()) {
                return false;
            }
    
            if (!fromFile.isFile()) {
                return false;
            }
    
            if (!fromFile.canRead()) {
                return false;
            }
            if (!toFile.getParentFile().exists()) {
                toFile.getParentFile().mkdirs();
            }
    
            if (toFile.exists() && rewrite) {
                toFile.delete();
            }
    
            try {
                FileInputStream fosfrom = new FileInputStream(fromFile);
                FileOutputStream fosto = new FileOutputStream(toFile);
    
                byte[] bt = new byte[1024];
                int c;
                while ((c = fosfrom.read(bt)) > 0) {
                    fosto.write(bt, 0, c);
                }
                //关闭输入、输出流
                fosfrom.close();
                fosto.close();
            } catch (FileNotFoundException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
                return false;
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
                return false;
    
            }
            return true;
        }
  • 相关阅读:
    linux 硬件信息
    docker note
    Shell cmd set note
    mysql management note
    scp noneed passwd
    update kernel
    数据包处理过程
    tcp/ip分片
    sockopt note
    Python note
  • 原文地址:https://www.cnblogs.com/zzw1994/p/5431696.html
Copyright © 2011-2022 走看看