I would like to implement a distributed download manager on android that initiates downloads at certain byte lengths. So this way portions of files can be downloaded instead of only from the beginning to the end of the http request.
Nothing innovative about it, I just don't know how to do it. (It's not bitorrent either)
In java http apache library, how would I get the length of the file from the server, and then initiate a download from the middle of the file to the end?