Note: (Restricted functionality due to obvious reasons!)
Minimal Code ( Raw-View ) :
import java.io.*;
class FRDemo
{
public static void main(String zee[]) throws Exception
{
FileReader fr = new FileReader("WriteNames.txt"); // true for append mode
int temp = 0;
System.out.print("File : WriteNames.txt\n");
while((temp=fr.read())!=-1)
{
System.out.print((char)temp);
}
fr.close();
}
}