Anyway to get he downloading status like how much it has finished?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
It depends™: the server can (or not) send a Content-Length header before it sends the content itseft. In this case, yes, it's possible: get the header value, then get the response output steam and read from it by chunks of fixed size, and update the status at each iteration. If the header is not present, no, you have no clue about the remaining content to read. |
|||
|
|