为什么从互联网下载文件时会发生这种情况

发布于 2024-12-09 07:27:44 字数 456 浏览 0 评论 0原文

我发现了一个让我困惑的有趣问题。

当我使用 Chrome 从互联网下载文件时,我注意到了这一点。

对于某些类型的文件,例如此文件,Chrome 下载栏会提醒您文件的总大小以及下载的剩余时间。

但是,对于其他类型的文件,例如此文件, chrome下载栏不会提醒总大小和剩余时间。

那么为什么会有这样的差异呢?

我猜它与 HTTP 或 HTTPS 协议有关,对吗? 但我不知道如何从这个角度解释这一点。

I found an interesting issue that confused me.

I noticed it when I use a Chrome to download files from the Internet.

For some kind of files, like this one, the Chrome download bar will remind you the total size of the file and the remaining time to download it.

However, for some other kind of files, like this one, the chrome download bar will not remind the total size and the remaining time.

So why is there such difference?

I guess it has something with the HTTP or HTTPS protocol, am I right?
But I do not know how to explain this in this point of view.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

乖乖哒 2024-12-16 07:27:44

第一个具有以下 HTTP 标头:

Content-Length: 19162507

第二个没有 Content-Length 标头,因此浏览器无法显示下载百分比。

您可以在命令行上使用 curl 查看 HTTP 标头:

curl -I http://www.stanford.edu/class/ee368/Handouts/1-Introduction_March28.pdf

The first one has this HTTP header:

Content-Length: 19162507

The second one does not have the Content-Length header, and so the browser cannot show the download percentage.

You can view HTTP headers with curl on the command line:

curl -I http://www.stanford.edu/class/ee368/Handouts/1-Introduction_March28.pdf
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文