zoukankan      html  css  js  c++  java
  • Make webclient support upload the large file which are larger than 1G

    step1: reconstruct the WebClient class

    public class MyWebClient : WebClient
        {
            
    protected override WebRequest GetWebRequest(Uri address)
            {
                HttpWebRequest request 
    = base.GetWebRequest(address) as HttpWebRequest;
                request.Timeout 
    = -1;
                request.CachePolicy 
    = new System.Net.Cache.RequestCachePolicy(System.Net.Cache.RequestCacheLevel.NoCacheNoStore);
                request.AllowWriteStreamBuffering 
    = false;
                
    return request;
            }
        }

    Step2: use new WebClient as the WebClient

                    WebClient web = new MyWebClient();
                    web.UploadFileCompleted 
    += new UploadFileCompletedEventHandler(web_UploadFileCompleted);
                    web.UploadProgressChanged 
    += new UploadProgressChangedEventHandler(web_UploadProgressChanged);
                    FileInfo fi 
    = new FileInfo(@"D:\VirtualBox VMs\VMxp\VMxp.vdi");
                    Uri uri 
    = new Uri("http://127.0.0.1:9090/upload");
                    web.UploadFileAsync(uri, fi.FullName);
  • 相关阅读:
    关于二分操作的基本应用
    东北育才 d1t4 漂流
    东北育才 d1t1 优雅的序列
    从零开始的图的存储方法
    从零理解的KMP算法
    openjudge T017 黑社会团伙 (并查集)
    东北育才 day6
    poj3071 Football
    noip2015 跳石头
    noip2015 信息传递
  • 原文地址:https://www.cnblogs.com/skyfei/p/2009122.html
Copyright © 2011-2022 走看看