home *** CD-ROM | disk | FTP | other *** search
/ Sams Teach Yourself C in 21 Days (6th Edition) / STYC216E.ISO / mac / Examples / Day27 / reading.java < prev    next >
Text File  |  2002-05-26  |  573b  |  23 lines

  1. import java.io.*;
  2. public class ReadTextFile {
  3.   public static void main(String args[]) {
  4.     String s;
  5.     try {
  6.       FileReader inFile = new FileReader("c:\\test.txt");
  7.       BufferedReader buff = new BufferedReader(inFile);
  8.       boolean endOfFile = false;
  9.       while (!endOfFile) {
  10.         s = buff.readLine();
  11.         if (s == null)
  12.           endOfFile = true;
  13.         else
  14.           System.out.println(s);
  15.       }
  16.       buff.close();
  17.     }
  18.     catch (IOException e) {
  19.       System.out.println("An error occurred: " + e.toString());
  20.     }
  21.   }
  22. }
  23.