zoukankan      html  css  js  c++  java
  • java实现cmd的copy功能

    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileNotFoundException;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;

    public class Copy {
        public static void main(String[] args) {
            if (args.length == 0) {
                System.out.println("Args not right!!!");
                System.out.println("Should by source distintion!");
                System.exit(1);
            }
            File f1 = new File(args[0]);
            File f2 = new File(args[1]);
            if (!f1.exists()) {
                System.out.println("Source file not exxit!");
                System.exit(1);
            }
            InputStream input = null;
            try {
                input = new FileInputStream(f1);
            } catch (FileNotFoundException e) {
                e.printStackTrace();
            }
            OutputStream output = null;
            try {
                output = new FileOutputStream(f2);
            } catch (FileNotFoundException e) {
                e.printStackTrace();
            }
            if (input != null && output != null) {
                int temp = 0;   //字节流
                try {
                    while ((temp = input.read()) != -1) {
                        output.write(temp);
                    }
                    System.out.println("Copy complete!");
                } catch (IOException e) {
                    e.printStackTrace();
                    System.out.println("Copy failed!");
                }
                try {
                    input.close();
                    output.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    }

  • 相关阅读:
    java_监控工具jvisualvm
    bzoj3667: Rabin-Miller算法
    bzoj3677: [Apio2014]连珠线
    4070: [Apio2015]雅加达的摩天楼
    4069: [Apio2015]巴厘岛的雕塑
    4071: [Apio2015]巴邻旁之桥
    bzoj2653: middle
    1500: [NOI2005]维修数列
    bzoj4262: Sum
    bzoj4540: [Hnoi2016]序列
  • 原文地址:https://www.cnblogs.com/vonk/p/3921402.html
Copyright © 2011-2022 走看看