/**
* Write a description of class ReadIt here.
* This programs reads the content of a text file * @author (your name)
* @version (a version number or a date) */
import java.io.*;
class JustReadIt {
public static void main(String args[]) throws Exception { FileReader f=new FileReader("myOwnFile.txt");
BufferedReader b;
b=new BufferedReader(f);
String testo="";
String s;
while(true) { s=b.readLine();
if(s==null) break;
testo=testo.concat("\n"+s);
}
System.out.println(testo);
} }