码迷,mamicode.com
首页 > 编程语言 > 详细

java: file/outputStream/InputStream 复制文件

时间:2017-07-05 10:05:44      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:存在   write   log   方法   自动生成   length   highlight   als   else   

java i/o 复制文件

public static void main(String[] args) throws Exception {
		// TODO 自动生成的方法存根
		
		if(args.length != 2)
		{
			System.out.println("您输入的参数有误");
			System.exit(1);
		}
		
		if(args[0].equals(args[1]))
		{
			System.out.println("源文件和目标文件不能一致");
			System.exit(2);
		}
		
		File file = new File(args[0]);
		if(file.exists())
		{
			InputStream ipt = new FileInputStream(file);
			File file2 = new File(args[1]);
			OutputStream out = new FileOutputStream(file2);
			int temp = -1;
			while( (temp = ipt.read())!=-1 )
			{
				out.write(temp);
			}
			System.out.println("文件复制成功");
			ipt.close();
			out.close();
			
		}else{
			System.out.println("源文件不存在");
			System.exit(3);
		}

	}

  

 

java: file/outputStream/InputStream 复制文件

标签:存在   write   log   方法   自动生成   length   highlight   als   else   

原文地址:http://www.cnblogs.com/achengmu/p/7119380.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!