Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Stream definition

Tags:

java

stream

I'm reading on Java I/O streams and I'm confused on the correct definition associated with them.

  • Some say that a stream is a sort of conveyor belt in which data are transmitted...
  • other say that a stream is a flow or a sequence of a data...
  • other say that a stream is a connection to an input or an output source...

So what's the correct definition?

like image 222
xdevel2000 Avatar asked Jun 13 '11 07:06

xdevel2000


3 Answers

A stream is a concept, but it's not that strict, that just only one description would be correct.

An I/O Stream represents an input source or an output destination. A stream can represent many different kinds of sources and destinations, including disk files, devices, other programs, and memory arrays. Streams support many different kinds of data, including simple bytes, primitive data types, localized characters, and objects. Some streams simply pass on data; others manipulate and transform the data in useful ways.

No matter how they work internally, all streams present the same simple model to programs that use them: A stream is a sequence of data.

From: http://download.oracle.com/javase/tutorial/essential/io/streams.html

Also a stream is either an input stream or output stream. If it is an input stream, in Java it will adhere to the InputStream interface, the latter to the Outputstream.

(Side note: In crypto, there's e.g. a difference between stream and block ciphers, where a stream cipher is something that does not know (in a very general sense) anything about the future, while a block cipher knows its (maximum) size in advance and the sizes of all coming blocks.)

like image 104
miku Avatar answered Oct 05 '22 11:10

miku


I would say a Stream is like all of these, but not exactly any of these.

I would say its an ordered sequence of 8-bit bytes.

like image 30
Peter Lawrey Avatar answered Oct 05 '22 12:10

Peter Lawrey


Java programs perform I/O through streams. A stream is an abstraction that either produces or consumes information. A stream is linked to a physical device by the Java I/O system. All streams behave in the same manner, even if the actual physical devices to which they are linked differ. Thus, the same I/O classes and methods can be applied to any type of device. This means that an input stream can abstract many different kinds of input: from a disk file, a keyboard, or a network socket. Likewise, an output stream may refer to the console, a disk file, or a network connection. Streams are a clean way to deal with input/output without having every part of your code understand the difference between a keyboard and a network, for example. Java implements streams within class hierarchies defined in the java.io package.

From: Java The Complete Reference

like image 25
Koray Tugay Avatar answered Oct 05 '22 11:10

Koray Tugay