파일 복사 작업

1497 단어 자바
package com.ywx.io;

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;
/**
 *        
 * @author Vashon
 * date:20150402
 */
public class CopyDemo {
	public static void main(String[] args) {
		new Copy(new File("d:"+File.separator+"test1.txt"),
				new File("d:"+File.separator+"test1.txt"));
	}
}
class Copy{//   
	public Copy(File f1,File f2){
		if(f1.exists()){
			System.out.println("      !");
			System.exit(1);
		}
		if(f2==null){
			System.out.println("        !");
			System.exit(1);
		}
		InputStream input=null;//        ,     
		OutputStream output=null;//        ,      
		try {
			input=new FileInputStream(f1);
			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("    !");
			} catch (IOException e) {
				e.printStackTrace();
				System.out.println("    !");
			}
			try {
				input.close();
				output.close();
			} catch (IOException e) {
				e.printStackTrace();
			}
		}
	}
}

저작권 성명: 본 고 는 블 로 거들 이 창작 한 글 로 블 로 거들 의 허락 없 이 전재 할 수 없다.
다음으로 전송:https://www.cnblogs.com/ywx-vashon/p/4895786.html

좋은 웹페이지 즐겨찾기