created: 06/02/00; revised: 07/08/02, 06/08/03, 07/23/06, 08/14/2010, 10/12/2017

go to home page   go to next page

CHAPTER 103 — Input and Output Streams

This chapter discusses input and output (I/O) using the package java.io. I/O is done using streams. A stream is a sequence of data flowing from a source to a destination. I/O streams can be connected to a wide variety of data sources and destinations.

You have already used streams in reading data from the keyboard and in writing data to the monitor. Streams are used for much more than that.

Chapter Topics:


QUESTION 1:

Does Scanner receive its data from a stream?


go to home page   go to next page