Completion requirements
This chapter discusses Java's FileReader and BufferedReader classes in detail. FileReader and BufferedReader classes are used together when reading data from an external file. The use of the BufferedReader class allows data to be buffered as it is read from a file before manipulating it. The readLine() method of the BufferedReader class reads a line of text from a character-oriented input stream, and puts it into a new String object.
15. End of Chapter
Answer:
Yes.
End of Chapter
You have reached the end this chapter. You may wish to review the following. Click on a subject that interests you to go to where it was discussed.
- FileReader and BufferedReader character input streams.
- The readLine() method.
- Closing an input stream.
- The copyFile() method of the file copy program.
- C-style input loop.