I want to monitor the progress of downloading data. I want to log after a certain amount of data has been transferred. My Code:
int contentLength = 0;
final int bufferSize = 1024*8;
byte[] buffer = new byte[bufferSize];
int length = 0;
while ( (length = bufferedInputStream.read(buffer) ) !=-1 ) {
contentLength = contentLength+length;
if ( (contentLength % (bufferSize*1024*4)) ==0 ) {
logger.debug(contentLength);
}
}
This seemed to be not working. It seems that the buffer is not always full and therefore a multiple of the buffersize that is used as modulo does not match.
Is this really common that the buffer is not "full"? How can this happen? What is the internal logic that a bufer is "flushed"? Does Java wait for s specific time to receive packets and then flush (if the buffer is not full)? Any information how this internally works would be great for understanding it.
(I do not need a solution, I have implemented it other, just wondering if this is common that the buffer is never fully read? And would be curious to understand why.)
Thanks very much! Jens