다음 예에서는 BufferedWriter 클래스의 읽기 및 쓰기 메서드를 사용하여 파일 내용을 다른 파일에 복사하는 방법을 보여줍니다.
/* author by w3cschool.cc Main.java */import java.io.*;public class Main { public static void main(String[] args) throws Exception { BufferedWriter out1 = new BufferedWriter (new FileWriter("srcfile")); out1.write("string to be copied\n"); out1.close(); InputStream in = new FileInputStream (new File("srcfile")); OutputStream out = new FileOutputStream (new File("destnfile")); byte[] buf = new byte[1024]; int len; while ((len = in.read(buf)) > 0) { out.write(buf, 0, len); } in.close(); out.close(); BufferedReader in1 = new BufferedReader (new FileReader("destnfile")); String str; while ((str = in1.readLine()) != null) { System.out.println(str); } in.close(); }}
위 코드를 실행한 결과는 다음과 같습니다.
string to be copied
자바 예제 - 파일의 내용을 다른 파일의 내용으로 복사하세요. 더 많은 관련 내용을 보려면 PHP 중국어 웹사이트(www.php.cn)를 참고하세요!