質問

I have few question related to Web technologies. From my reading ant looking at Apache and Netty documents I could not figure out few things about downloading a large file with HTTP multipart/post request.

  1. Is it possible to send HTTP request indicating request to download a file in smaller multipart (chunks)?

  2. How to download large file in multipart ?

Please correct me if I have not understood the 'multipart' term itself. I know lot of people have faced this problem, where application (client) downloads files in smaller portion, so when network outage happens, application does not need to download whole file from the beginning again. Specially, when the file is not any media file.

Thanks.

役に立ちましたか?

解決

Multipart refers to encoding multiple documents in one body, see this for the definition. For http, a multipart upload allows the client to send multiple documents with one post, for example uploading an image, and form fields in one request.

Multipart does not refer to downloading a document in multiple chunks.

You can use http ranges to restart downloading if a network outage occurs.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top