파일 복 사 를 위 한 프로그램 을 만 듭 니 다.사용 형식: 자바 복사 원본 파일 대상 파일, 원본 파일 의 내용 을 대상 파일 로 복사 하 는 기능 입 니 다.

1059 단어 JAVA
파일 복 사 를 위 한 프로그램 을 만 듭 니 다.사용 형식: 자바 복사 원본 파일 대상 파일, 원본 파일 의 내용 을 대상 파일 로 복사 하 는 기능 이 있 습 니 다.
import java.io.*;
public class Main{
    public static void main(String args[ ]){
        try{  FileReader inOne=new FileReader("a.txt");
             BufferedReader inTwo= new BufferedReader(inOne);
             FileWriter tofile=new FileWriter("hello.txt");
             BufferedWriter out= new BufferedWriter(tofile);
             String s=null;
             while((s=inTwo.readLine())!=null){
                 out.write(s);
                 out.newLine();
             }
             out.flush();
             out.close();
             tofile.close();
             inOne=new FileReader("hello.txt");
             inTwo= new BufferedReader(inOne);
             while((s=inTwo.readLine())!=null){
                System.out.println(s);
             } 
             inOne.close();
             inTwo.close();
        }
        catch(IOException e){
             System.out.println(e.toString());
        }  
    }
}

좋은 웹페이지 즐겨찾기