Tag

InputStream

0 views collected around this technical thread.

Full-Stack Internet Architecture
Full-Stack Internet Architecture
Jan 14, 2021 · Fundamentals

Understanding the Decorator Pattern in Java: Core Roles and Practical Implementation

This article explains the Decorator design pattern in Java, detailing its four core participants—Component, ConcreteComponent, Decorator, and ConcreteDecorator—through UML diagrams and complete code examples, and also illustrates how Java’s InputStream hierarchy uses FilterInputStream as a real‑world decorator.

Decorator PatternInputStreamJava
0 likes · 5 min read
Understanding the Decorator Pattern in Java: Core Roles and Practical Implementation
Java Captain
Java Captain
Feb 13, 2018 · Fundamentals

Understanding Java I/O Streams: Concepts, Classifications, and Code Examples

This article explains the concept of Java I/O streams, their classifications, and provides detailed code examples for InputStream, FileInputStream, FileOutputStream, BufferedOutputStream, and DataOutputStream, illustrating how to read, write, and manage resources effectively.

FileIOI/OInputStream
0 likes · 11 min read
Understanding Java I/O Streams: Concepts, Classifications, and Code Examples
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.

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