Character File
Java Programming ⚭ Jun 6, 2016 ⚭ 244 views
/* 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!
Learn more about FileReader and FileWriter