JavaA Categorization Scheme for All Those Java I/O Stream Classes

A Categorization Scheme for All Those Java I/O Stream Classes

Developer.com content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More.

The number of I/O stream classes in Java make it difficult for newbies to choose the right stream for a given application scenario. In his JavaBoutique.com article, Gurunath Kalamadi presents a very useful technique for conceptualizing the Java I/O stream classes, which you won’t find it in any documentation.

He suggests separating the streams into two categories:

  1. “Boundary” streams: Boundary stream classes have basic low-level I/O routines to carry out the I/O (interacting with the underlying operating system for I/O operations, if necessary).
  2. “Intermediate” streams: Intermediate stream classes are “chained” to boundary stream classes, carrying out transformations on the data.


Read the full story with examples at JavaBoutique:
Java Programming Basics: I/O Streams

Get the Free Newsletter!

Subscribe to Developer Insider for top news, trends & analysis

Latest Posts

Related Stories