Guest User

Untitled

a guest
May 23rd, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.36 KB | None | 0 0
  1. // Demonstrate FileReader.
  2. import java.io.*;
  3. class FileReaderDemo {
  4.     public static void main(String args[]) throws Exception {
  5.         FileReader fr = new FileReader("out.txt");
  6.         BufferedReader br = new BufferedReader(fr);
  7.         String s;
  8.         while((s = br.readLine()) != null) {
  9.             System.out.println(s);
  10.         }
  11.         fr.close();
  12.     } // I AM SO GOOD AT THIS SHIT :D
  13. }
Add Comment
Please, Sign In to add comment