All pastes #2108367 Raw Edit

Anonymous

public java v1 · immutable
#2108367 ·published 2012-01-31 22:56 UTC
rendered paste body
import java.io.*;import java.util.*;public class Ch7_9_Driver {		public static void main (String[] args) throws FileNotFoundException {		                BufferedReader in = new BufferedReader(new FileReader("Ch7_9.txt"));                 String text;                while (in.ready()) {                  text = in.readLine();                  System.out.println(text);                }				}}