When you use the method write(byte[] b) to write to a BufferedOutputStream, the write method from FilterOutputStream is used. The documentation says:

"The write method of FilterOutputStream calls its write method of three arguments with the arguments b, 0, and b.length. "

Which write method with three arguments is it referring to? The one in FilterOutputStream, or the one in BufferedOutputStream? (i.e. is the write actually buffered?).

I believe it is, but I'm not sure.

link|improve this question
Its write method. Its own. This is perfectly clear. Downvoting. – EJP Feb 15 at 1:23
feedback

2 Answers

up vote 1 down vote accepted

BufferedOutputStream overrides the write(byte[], int, int) method, so that new override is called. Yes, the write is buffered.

link|improve this answer
feedback

The answer is both yes and no. To summarize my finds: the effective result is a little different than what the promise ("buffered") because whether the stream is flushed immediately depends both on the size of the buffer and in the amount of data you store per call.

The following is from the somewhat more detailed http://docs.oracle.com/javase/7/docs/api/java/io/BufferedOutputStream.html (emphasis my own):

Writes len bytes from the specified byte array starting at offset off to this buffered output stream.

Ordinarily this method stores bytes from the given array into this stream's buffer, flushing the buffer to the underlying output stream as needed. If the requested length is at least as large as this stream's buffer, however, then this method will flush the buffer and write the bytes directly to the underlying output stream. Thus redundant BufferedOutputStreams will not copy data unnecessarily.

link|improve this answer
It's as buffered as BufferedOutputStream ever gets, no? – Louis Wasserman Feb 14 at 19:07
Indeed. Just saying that the effect of having a flush after each call is tha same or worse than having the stream be unbuffered. It all depends on whether OP chooses the buffersize appropriate in relation to the amount of data he stores on each call. – eznme Feb 14 at 19:12
I'm aware of the subtleties of the write(byte[], int, int) method as you explain eznme. Thanks anyway though. As Louis says, when I said 'buffered', I meant 'buffered' in the sense of 'a buffer is involved' – user1209776 Feb 14 at 19:20
feedback

Your Answer

 
or
required, but never shown

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