IO Streams: Stream is a flow of data IO streams are used to send and receive the information from Primary to Secondary memory or vice versa. java.io package is providing classes and interfaces to implement …
Byte Streams: Processing the data byte by byte. Classes since JDK1.0 The 2 main abstract classes are InputStream class OutputStream class Extensions are FileInputStream – to perform read operations FileOutputStream – to perform write operations …