• 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();
                }
            }
        }
    }

  • 相关阅读:
    shell 环境变量
    websphere 进程
    shell 安装使用VIM
    shell seq 用法
    shell 变量自增
    WebService学习笔记系列(二)
    WebService学习笔记系列(一)
    类加载器及其委托机制的深入分析
    Java工具类:给程序增加版权信息
    QQ互联API接口失效,第三方网站的死穴
  • 原文地址:https://www.cnblogs.com/vonk/p/3921402.html
Copyright © 2020-2023  润新知