This is a continuation of my previous question which I posted when I wasn\'t a registered user. As a refresher, I\'m trying to resume the downloading of a large file from m
Seems that problem is calling
input = new BufferedInputStream(url.openStream(), 8192);
instead of
input = new BufferedInputStream(connection.getInputStream(), 8192);
url.openStream() makes another call to openConnection() WITHOUT the range property.
url.openStream()
openConnection()