File Input Output
Files come in two types in Java
I/O in Java
Specialized subclasses
Reading Data
Example Java™ API
import java.io;
File fileName = new File (testFile.txt);
// a file object could be created with a GUI as in TextIO.javaBufferedReader br
//br is the pipe between the file object and memory objectString line = br.readLine();
// reading in a single line of text into the String object linebr.close();