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 标头获取文件大小

      How to get the file size from http headers(如何从 http 标头获取文件大小)
      <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 标头获取文件大小的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                Adding and removing users from Active Directory groups in .NET(在 .NET 中的 Active Directory 组中添加和删除用户)
                set equality in linq(在 linq 中设置相等)
                HashSet conversion to List(HashSet 转换为 List)
                How to set timeout for webBrowser navigate event(如何为 webBrowser 导航事件设置超时)
                Test whether two IEnumerablelt;Tgt; have the same values with the same frequencies(测试两个IEnumerablelt;Tgt;具有相同频率的相同值)
                How do you determine if two HashSets are equal (by value, not by reference)?(您如何确定两个 HashSet 是否相等(按值,而不是按引用)?)

                      <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>
                    • <legend id='RSEzt'><style id='RSEzt'><dir id='RSEzt'><q id='RSEzt'></q></dir></style></legend>
                    • <small id='RSEzt'></small><noframes id='RSEzt'>

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

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

                          <tbody id='RSEzt'></tbody>