Tue Oct 12 2021

Copy Char File

File Name: copy-char-file.java

/* Character stream */
import java.io.*;

class copycharfile {
	public static void main(String args[]) throws IOException {
		FileReader freader;
		FileWriter fwrite;
		try {
			freader = new FileReader("charfile.txt");
			fwrite = new FileWriter("outfile.txt");
			int rf;

			/* Reading and writing character till the end */
			while((rf = freader.read()) != -1)
				fwrite.write(rf);
			fwrite.close();
			freader.close();
			System.out.println("File copied successfully!");
		}
		catch(FileNotFoundException e) {
			System.out.println("File not found!");
		}
	}
}





/* Output */
File Not found!

/* ---------------------- */


File copied successfully!

We use cookies to improve your experience on our site and to show you personalised advertising. Please read our cookie policy and privacy policy.