I/O & Serialization
Java I/O (java.io) provides classes for reading and writing data — files, network connections, in-memory buffers — through the abstraction of streams: a sequential flow of data from a source (InputStream/Reader) or to a destination (OutputStream/Writer).
Beginner3 min

