Does anyone know of how to request byte ranges along with an HTTP request? I am looking to facilitate the resuming of downloads in our application by requesting a byte range of
I was able to get this working by adding the following line:
httpGet.addHeader("Range", "bytes=0-0");