I'm doing a project on java download manager.i want to download a single file(which is in some website) with multiple connections(just like download Managers do,example-IDM).Is this possible in java ?.if yes please help me how can i implement that.if you people have any sample code then please post.Thank you in Advance..Have a Rocking Future.
|
Here are a couple of hints. No code though. A multi-connection download manager relies on the support for the HTTP clients use the A multi-connection download manager would make multiple connections to a server supporting this feature. Each connection would issue it's own range of headers to download. The responses would then be collated in the necessary order to obtain the desired file. The size of the ranges can be pre-calculated using an initial HTTP HEAD request, which returns the actual size of the file in the |
||||
|
|
|
I'd recommend reading about Segmented downloading, thinking of a way to implement it in Java and than asking concrete questions if you have any. |
|||
|
|