Tue Oct 05 2021

Character File

File Name: character-file.java

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

class charfile {
	public static void main(String args[ ]) throws IOException {

		/* Declare and create input file */
		FileWriter fwrite = new FileWriter("charfile.txt");
		fwrite.write("This is a character file!");
		System.out.println("File Created!\n");
		fwrite.close();

		/* Read till end of the file */
		FileReader freader = new FileReader("charfile.txt");
		int rf;
		System.out.println("Reading File -");
		while((rf = freader.read()) != -1)
			System.out.print((char) rf);
		System.out.println();
		freader.close();
	}
}


/* Output */
File Created!

Reading File -
This is a character file!
Reference:

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