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

Java DataInputStream class method readFully is used for reading the bytes from the stream into the to the byte array which is passed as the parameter. After reading the bytes from the stream, does readFully increment the position of the stream ?

share|improve this question

1 Answer

up vote 2 down vote accepted

After reading the bytes from the stream, does readFully increment the position of the stream ?

Yes.

I cannot see where this is explicitly stated in the DataInputStream javadocs, but that's the way that all input streams and readers work.

If DataInputStream.readFully() didn't behave this way:

  • it would make the API hard to use,
  • it would be difficult and expensive to implement ... since DataInputStream is a filter for an arbitrary InputStream instances and these don't support seeking, and
  • it would violate the principle of least surprise.
share|improve this answer
Can you tell me whether the readFully reads the stream from it's current position or from starting point ? – saikamesh Mar 27 '11 at 11:11
1  
A stream has no starting point so to say. You always read what comes next. Past and future don't matter. In that sense it's from the current position. – musiKk Mar 27 '11 at 11:37

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.