Posts tagged Types Of Stream
Input And Output Streaming
Oct 6th
Stream:
A stream is a an abstraction that either produces or consumes information. A stream is linked to a physical device by the java I/O stream.
Types Of Stream:
- Byte Stream
- Character Stream
Byte Stream :
- Handles input and output of bytes.
- Classes: Input Stream and Output Stream (important classes)
- Methods: read(), write() (important methods)
Character Stream:
- Handles input and More >

