Completion requirements
This chapter explains how input and output streams can be used for writing files, similar to how they are used for writing to the display.
11. InputStream
Answer:
An InputStream
handles byte data.
InputStream
InputStream
is an abstract class from which all byte-oriented input streams are derived. Its descendant classes are used for general-purpose input (non-character input). These streams deliver data to a program in groups of 8-bit bytes. The bytes can be grouped into the size necessary for the type of data.
For example, if a disk file contains 32-bit int
data, data can be delivered to the program in 4-byte groups in the same format as Java primitive type int
.
We will be mostly concerned with DataInputStream
and FileInputStream
.
Question 11:
(Review: ) What type of data does an
OutputStream
handle?