I wrote simple Java Downloader and I have some problems with speed.
At first, speed is OK - just like when I use my browser to download this file. But after a while speed decreases a lot and change every two seconds - from 42kb/s to 64kb/s and from 64kb/s to 42kb/s.
My code:
InputStream is = null;
FileOutputStream os = null;
os = new FileOutputStream(...);
URL u = new URL(...);
URLConnection uc = u.openConnection();
is = uc.getInputStream();
final byte[] buf = new byte[1024];
for(int count = is.read(buf);count != -1;count = is.read(buf)) {
os.write(buf, 0, count);
}
What should I do to maximalise speed of download?
UPDATE
Sizes of files are various from 1 to about 100MB. I increased the buffer to 65536 to it is the same.
About measuring : I check every 3 second how many bytes was written, and then divide it by 3 and by 1024 - it gives me kb / s
lsordircommand. I'd go for a more direct approach just to cut out uncertainties, adding instrumenting to the code. – T.J. Crowder May 22 '11 at 8:14count? That looks like the best measure for how much you already downloaded. – CodesInChaos May 22 '11 at 8:17