Search

Loading
Showing posts with label read. Show all posts
Showing posts with label read. Show all posts

Wednesday, June 13, 2012

Read data from text file with java

Read data from text file with java and write to screen :
/**
www.Developerpages.gr
* Read data from text file
*/
package readfromfile;

import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.util.logging.Level;
import java.util.logging.Logger;


public class ReadFromFile {