1. <tfoot id='ftjWS'></tfoot>

    <small id='ftjWS'></small><noframes id='ftjWS'>

  2. <legend id='ftjWS'><style id='ftjWS'><dir id='ftjWS'><q id='ftjWS'></q></dir></style></legend>
      <bdo id='ftjWS'></bdo><ul id='ftjWS'></ul>
      <i id='ftjWS'><tr id='ftjWS'><dt id='ftjWS'><q id='ftjWS'><span id='ftjWS'><b id='ftjWS'><form id='ftjWS'><ins id='ftjWS'></ins><ul id='ftjWS'></ul><sub id='ftjWS'></sub></form><legend id='ftjWS'></legend><bdo id='ftjWS'><pre id='ftjWS'><center id='ftjWS'></center></pre></bdo></b><th id='ftjWS'></th></span></q></dt></tr></i><div id='ftjWS'><tfoot id='ftjWS'></tfoot><dl id='ftjWS'><fieldset id='ftjWS'></fieldset></dl></div>

      如何从 http 标头获取文件大小

      时间:2023-10-25
      <i id='aZRzw'><tr id='aZRzw'><dt id='aZRzw'><q id='aZRzw'><span id='aZRzw'><b id='aZRzw'><form id='aZRzw'><ins id='aZRzw'></ins><ul id='aZRzw'></ul><sub id='aZRzw'></sub></form><legend id='aZRzw'></legend><bdo id='aZRzw'><pre id='aZRzw'><center id='aZRzw'></center></pre></bdo></b><th id='aZRzw'></th></span></q></dt></tr></i><div id='aZRzw'><tfoot id='aZRzw'></tfoot><dl id='aZRzw'><fieldset id='aZRzw'></fieldset></dl></div>

            <tbody id='aZRzw'></tbody>
        • <legend id='aZRzw'><style id='aZRzw'><dir id='aZRzw'><q id='aZRzw'></q></dir></style></legend>
            <bdo id='aZRzw'></bdo><ul id='aZRzw'></ul>
              <tfoot id='aZRzw'></tfoot>

              <small id='aZRzw'></small><noframes id='aZRzw'>

              1. 本文介绍了如何从 http 标头获取文件大小的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我想在下载之前获取 http:/.../file 的大小.该文件可以是网页、图像或媒体文件.这可以用 HTTP 标头完成吗?如何只下载文件 HTTP 标头?

                I want to get the size of an http:/.../file before I download it. The file can be a webpage, image, or a media file. Can this be done with HTTP headers? How do I download just the file HTTP header?

                推荐答案

                是的,假设您正在与之交谈的 HTTP 服务器支持/允许:

                Yes, assuming the HTTP server you're talking to supports/allows this:

                public long GetFileSize(string url)
                {
                    long result = -1;
                
                    System.Net.WebRequest req = System.Net.WebRequest.Create(url);
                    req.Method = "HEAD";
                    using (System.Net.WebResponse resp = req.GetResponse())
                    {
                        if (long.TryParse(resp.Headers.Get("Content-Length"), out long ContentLength))
                        {
                            result = ContentLength;
                        }
                    }
                
                    return result;
                }
                

                如果不允许使用 HEAD 方法,或者服务器回复中不存在 Content-Length 标头,则确定服务器上内容大小的唯一方法是下载它.由于这不是特别可靠,因此大多数服务器都会包含此信息.

                If using the HEAD method is not allowed, or the Content-Length header is not present in the server reply, the only way to determine the size of the content on the server is to download it. Since this is not particularly reliable, most servers will include this information.

                这篇关于如何从 http 标头获取文件大小的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                上一篇:在 ASP.NET 中获取 HTTP 引荐来源网址 下一篇:为什么我会收到“发送 HTTP 标头后无法重定向"?当我调用 Response.Redirect() 时?

                相关文章

                    <i id='RSEzt'><tr id='RSEzt'><dt id='RSEzt'><q id='RSEzt'><span id='RSEzt'><b id='RSEzt'><form id='RSEzt'><ins id='RSEzt'></ins><ul id='RSEzt'></ul><sub id='RSEzt'></sub></form><legend id='RSEzt'></legend><bdo id='RSEzt'><pre id='RSEzt'><center id='RSEzt'></center></pre></bdo></b><th id='RSEzt'></th></span></q></dt></tr></i><div id='RSEzt'><tfoot id='RSEzt'></tfoot><dl id='RSEzt'><fieldset id='RSEzt'></fieldset></dl></div>
                  1. <legend id='RSEzt'><style id='RSEzt'><dir id='RSEzt'><q id='RSEzt'></q></dir></style></legend>
                  2. <small id='RSEzt'></small><noframes id='RSEzt'>

                    • <bdo id='RSEzt'></bdo><ul id='RSEzt'></ul>

                    <tfoot id='RSEzt'></tfoot>