- import java.io.*;
- class Demo
- {
- public static void main(String[] args)throws Exception
- {
- if(args.length!=2)
- {
- System.out.println("语法命令不正确");
- System.exit(1);
- }
- File file1=new File(args[0]);
- if(file1.exists())//如果原文件存在
- {
- File file2=new File(args[1]);
- InputStream input=new FileInputStream(file1);
- OutputStream output=new FileOutputStream(file2);
- int temp=0;
- while((temp=input.read())!=0)
- {
- output.write(temp);
- }
- input.close();
- output.close();
- System.out.println("文件拷贝完成");
- }
- }
- }
复制代码 编译 直接提示语法命令不正确. 以下代码没有被执行? |