Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Today I got this question for which I think I answered very bad. I said stream is a data that flows and reader is a technique where we read from that is a static data. I know this is an awful answer, so please provide me the crisp difference and definitions between these two with example in Java.

Thanks.

share|improve this question

3 Answers

up vote 6 down vote accepted

As others have said, the use cases for each are slightly different (even though they often can be used interchangeably)

Since readers are for reading characters, they are better when you are dealing with input that is of a textual nature (or data represented as characters). I say better because Readers (in the context of typical usage) are essentially streams with methods that easily facilitate reading character input.

share|improve this answer
+1 that is really the point, a Reader is generally backed by an InputStream of some sort (not always - see StringReader) and performing a conversion of bytes to 16 bit unicode characters. – Yishai Mar 11 '10 at 19:56

An InputStream is byte-oriented. A Reader is character-oriented.

The javadocs are your friend, explaining the difference. Reader, InputStream

share|improve this answer
1  
Without saying RTFM. – Tom Neyland Mar 11 '10 at 19:49
what is expansion of RTFM? – Bragaadeesh Mar 11 '10 at 19:56
RTFM == Read The F***ing Manual – NomeN Mar 11 '10 at 20:07

Stream is for reading bytes, Reader is for reading characters. One character may take one byte or more, depending on character set.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.