Thursday, January 20, 2011

File Reader

import java.io.*;
/**
 *
 * @author Sanket
 */
public class Main {
    public static void main(String[] args)throws IOException {
        //to read content from file you have to give complete link of file
        FileReader fr=new FileReader("D:\\sank.doc");
        BufferedReader br=new BufferedReader(fr);

        String str=br.readLine();

        while(str!=null)
        {
            System.out.println(str);
            str=br.readLine();
        }
    }
}

No comments:

Post a Comment