What is a stream? what are the different types and classes
of Streams?

Answers were Sorted based on User's Feedback



What is a stream? what are the different types and classes of Streams?..

Answer / janet

A stream is an abstraction that either produces or consumes
information.There are two types of Streams and they are :
ByteStreams: provide a convinient means for handling input
and output of bytes.
Character Streams: provide a convinient means for handling
input and output of characters.
Byte Streams classes: Are defined by using two abstract
classes ,namely InputStream and OutputStream.
Character Streams classes : Are defined by using two
abstract classes ,namely Reader and Writer.

Is This Answer Correct ?    1 Yes 2 No

What is a stream? what are the different types and classes of Streams?..

Answer / kumar

Most of the programs work with external data stored either
in local files or coming from other computers on the
network. Java has a concept of working with so-called
streams of data. After a physical data storage is mapped to
a logical stream, a Java program reads data from this
stream serially - byte after byte, character after
character, etc. Some of the types of streams are byte
streams (InputStream, OutputStream) and character streams
(Reader and Writer). The same physical file could be read
using different types of streams, for example,
FileInputStream, or FileReader.

There are different types of data, and hence different
types of streams.

Here's the sequence of steps needed to work with a stream:
1. Open a stream that points at a specific data
source: a file, a socket, URL, etc.
2. Read or write data from/to this stream.
3. Close the stream.

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More Core Java Interview Questions

What is an image buffer?

0 Answers  


how can you take care of mutual exclusion using java threads? : Java thread

0 Answers  


How many bytes is 255 characters?

0 Answers  


where to use join method and explain with real time senario?and programatical explenation also..

1 Answers   TCS,


What are keywords and reserved words in java?

0 Answers  






What happens when heap memory is full?

0 Answers  


Why do we need autoboxing in java?

0 Answers  


java is pure object-oriented programming language?why it is platform independent.

1 Answers  


Is arraylist a class in java?

0 Answers  


How do you use compareto?

0 Answers  


How do you relate a Interface to a Class? Tell me in Detail?

4 Answers  


Which are the two subclasses under exception class?

0 Answers  


Categories