从HttpWebResponse流中返回的字节数不等于ContentLength

时间:2015-08-31 15:04:57

标签: c# http stream httpwebrequest httpwebresponse

我使用HttpWebRequestHttpWebResponseStream创建了下载管理器。首先,我从ContentLength获取HttpWebResponse之前从流中读取文件内容并使用while循环停止读取,当它完成时(Stream.Read返回0,这意味着流的结束),我注意到我没有收到所有字节(我比较ContentLength

这是我用来从流中读取字节的一些代码,将内容长度计算为兆字节,我收到的字节数(以兆字节为单位)和我收到的字节百分比。

                int maxReadSize = 102400;
                int readByte = 0;
                long downloadedSize = 0;
                int roundCount = 0;
                int byteCalRound = 0;
                byte[] buffer = new byte[maxReadSize];
                _currentFile.Status = DownloadStatus.Downloading;
                DateTime lastUpdate = DateTime.Now;

                do
                {
                    readByte = await _inStream.ReadAsync(buffer, 0, maxReadSize, _ct);
                    byteCalRound += readByte;
                    downloadedSize += readByte;
                    roundCount++;

                    if (roundCount == 5)
                    {
                        var now = DateTime.Now;
                        var interval = (now - lastUpdate).TotalSeconds;
                        var speed = (int)Math.Floor(byteCalRound / interval);
                        lastUpdate = now;
                        _currentFile.RecievedSize = downloadedSize;
                        _currentFile.Throughput = speed;
                        _currentFile.PercentProgress = downloadedSize;

                        byteCalRound = 0;
                        roundCount = 0;
                    }

                    await stream.WriteAsync(buffer, 0, readByte);
                } while (readByte != 0);
            }

            // Download completed
            _currentFile.Status = DownloadStatus.Complete;
            _currentFile.CompleteDate = DateTime.Now;

            ...

            // Calculate file size
            public double FileSize
            {
                get { return _fileSize; }
                set
                {
                    _fileSize = value / 1048576;
                }
            }

            // Calculate receive bytes
            public double RecievedSize
            {
                get { return _recievedSize; }
                set
                {
                    _recievedSize = value / 1048576;
                }
            }

            // Calculate percent
            public double PercentProgress
            {
                get { return _percentProgress; }
                set
                {
                    _percentProgress = value / 1048576 * 100 / _fileSize;
                }
            }

我测试的结果(我下载的字节数)是有时我收到所有字节(我从PercentProgressRecievedSize检查)和
有时我收到99.6-99.9%的文件(同样,我从PercentProgressRecievedSize查看)所以,这是我遇到的问题。

那么,问题是导致这个问题的原因是什么?

请注意,我一直只在一个网站上通过下载视频进行测试,因为我不认为这个问题只发生在这个网站上(我通常是通过Chrome下载,结果是我100%收到文件。)

1 个答案:

答案 0 :(得分:0)

您正在阅读的数字(PercentProgressReceivedSize)仅每循环5次更新一次。如果有12次迭代,它们将反映前10次迭代的大小。

您可以在最后一次更新它们,即:

        ...
    } while (readByte != 0);
}

// Download completed
_currentFile.Status = DownloadStatus.Complete;
_currentFile.CompleteDate = DateTime.Now;
_currentFile.RecievedSize = downloadedSize;
_currentFile.PercentProgress = downloadedSize;

PS。如果您在团队中工作,请记住,大多数人都希望属性的get方法能够准确返回set的最后一个方法。