Tagged articles
3 articles
Page 1 of 1
MaGe Linux Operations
MaGe Linux Operations
Jul 16, 2021 · Fundamentals

Master Go’s io Package: Readers, Writers, and Stream I/O Explained

This article introduces Go's standard library io package, explains the io.Reader and io.Writer interfaces, demonstrates how to use them with built‑in types, shows how to implement custom Readers and Writers, and covers related utilities such as io.Copy, pipes, buffered I/O, and file operations.

ReaderStreamWriter
0 likes · 18 min read
Master Go’s io Package: Readers, Writers, and Stream I/O Explained
Java Captain
Java Captain
Dec 4, 2017 · Fundamentals

Understanding Java IO Streams: Concepts, Class Hierarchy, and Usage

This article explains the concept of streams, classifies Java IO streams into character/byte and input/output types, details the main InputStream and OutputStream class hierarchies, and describes related classes such as Reader, Writer, File, and RandomAccessFile for effective data handling.

InputStreamOutputStreamReader
0 likes · 10 min read
Understanding Java IO Streams: Concepts, Class Hierarchy, and Usage