Answer the question
In order to leave comments, you need to log in
Thinking in Java where did the BufferedInputFile class go?
The book Thinking in Java has this example:
//: io/MemoryInput.java
import java.io.*;
public class MemoryInput {
public static void main(String[] args) throws IOException {
StringReader in = new StringReader(
BufferedInputFile.read("MemoryInput.java"));
int c;
while((c = in.read()) != -1)
System.out.print((char)c);
}
} /* (Execute to see output) *///:~
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question