1. 程式人生 > >C#在WinForm下使用HttpWebRequest上傳檔案並顯示進度

C#在WinForm下使用HttpWebRequest上傳檔案並顯示進度

這段時間因專案需要,要實現WinForm下的檔案上傳,個人覺得采用FTP方法太麻煩,還得配置FTP伺服器,要通過防火牆也是一個麻煩。本來打算採用WebClient方法,但是採用這個方法實現後,進度條很短時間後就達到最大值,要等待一段時間才能傳送完畢,要是檔案太大(我這裡測試約100M),會出現錯誤。後來才知道,原來WebClient是在載入完整個檔案到記憶體後才真正開始上傳,怪不得會出現前面的問題了。不得已參考了很多文章,老外的一個文章對我啟發很大(http://blogs.msdn.com/johan/archive/2006/11/15/are-you-getting-outofmemoryexceptions-when-uploading-large-files.aspx

),是採用HttpWebRequest方法實現的。廢話少說,開始進入正題。實現過程如下:

在WinForm裡面呼叫下面的方法來上傳檔案:

  1. // <summary>
  2. /// 將本地檔案上傳到指定的伺服器(HttpWebRequest方法)
  3. /// </summary>
  4. /// <param name="address">檔案上傳到的伺服器</param>
  5. /// <param name="fileNamePath">要上傳的本地檔案(全路徑)</param>
  6. /// <param name="saveName">檔案上傳後的名稱</param>
  7. /// <param name="progressBar">上傳進度條</param>
  8. /// <returns>成功返回1,失敗返回0</returns>
  9. privateint Upload_Request(string address, string fileNamePath, string saveName, ProgressBar progressBar)
  10.         {
  11. int returnValue = 0;
  12. // 要上傳的檔案
  13.             FileStream fs = new FileStream(fileNamePath, FileMode.Open, FileAccess.Read);
  14.             BinaryReader r = new BinaryReader(fs);
  15. //時間戳
  16. string strBoundary = "----------" + DateTime.Now.Ticks.ToString("x");
  17. byte[] boundaryBytes = Encoding.ASCII.GetBytes("/r/n--" + strBoundary + "/r/n");
  18. //請求頭部資訊
  19.             StringBuilder sb = new StringBuilder();
  20.             sb.Append("--");
  21.             sb.Append(strBoundary);
  22.             sb.Append("/r/n");
  23.             sb.Append("Content-Disposition: form-data; name=/"");
  24.             sb.Append("file");
  25.             sb.Append("/"; filename=/"");
  26.             sb.Append(saveName);
  27.             sb.Append("/"");
  28.             sb.Append("/r/n");
  29.             sb.Append("Content-Type: ");
  30.             sb.Append("application/octet-stream");
  31.             sb.Append("/r/n");
  32.             sb.Append("/r/n");
  33. string strPostHeader = sb.ToString();
  34. byte[] postHeaderBytes = Encoding.UTF8.GetBytes(strPostHeader);
  35. // 根據uri建立HttpWebRequest物件
  36.             HttpWebRequest httpReq = (HttpWebRequest)WebRequest.Create(new Uri(address));
  37.             httpReq.Method = "POST";
  38. //對傳送的資料不使用快取
  39.             httpReq.AllowWriteStreamBuffering = false;
  40. //設定獲得響應的超時時間(300秒)
  41.             httpReq.Timeout = 300000;
  42.             httpReq.ContentType = "multipart/form-data; boundary=" + strBoundary;
  43. long length = fs.Length + postHeaderBytes.Length + boundaryBytes.Length;
  44. long fileLength = fs.Length;
  45.             httpReq.ContentLength = length;
  46. try
  47.             {
  48.                 progressBar.Maximum = int.MaxValue;
  49.                 progressBar.Minimum = 0;
  50.                 progressBar.Value = 0;
  51. //每次上傳4k
  52. int bufferLength = 4096;
  53. byte[] buffer = newbyte[bufferLength];
  54. //已上傳的位元組數
  55. long offset = 0;
  56. //開始上傳時間
  57.                 DateTime startTime = DateTime.Now;
  58. int size = r.Read(buffer, 0, bufferLength);
  59.                 Stream postStream = httpReq.GetRequestStream();
  60. //傳送請求頭部訊息
  61.                 postStream.Write(postHeaderBytes, 0, postHeaderBytes.Length);
  62. while (size > 0)
  63.                 {
  64.                     postStream.Write(buffer, 0, size);
  65.                     offset += size;
  66.                     progressBar.Value = (int)(offset * (int.MaxValue / length));
  67.                     TimeSpan span = DateTime.Now - startTime;
  68. double second = span.TotalSeconds;
  69.                     lblTime.Text = "已用時:" + second.ToString("F2") + "秒";
  70. if (second > 0.001)
  71.                     {
  72.                         lblSpeed.Text = " 平均速度:" + (offset / 1024 / second).ToString("0.00") + "KB/秒";
  73.                     }
  74. else
  75.                     {
  76.                         lblSpeed.Text = " 正在連線…";
  77.                     }
  78.                     lblState.Text = "已上傳:" + (offset * 100.0 / length).ToString("F2") + "%";
  79.                     lblSize.Text = (offset / 1048576.0).ToString("F2") + "M/" + (fileLength / 1048576.0).ToString("F2") + "M";
  80.                     Application.DoEvents();
  81.                     size = r.Read(buffer, 0, bufferLength);
  82.                 }
  83. //新增尾部的時間戳
  84.                 postStream.Write(boundaryBytes, 0, boundaryBytes.Length);
  85.                 postStream.Close();
  86. //獲取伺服器端的響應
  87.                 WebResponse webRespon = httpReq.GetResponse();
  88.                 Stream s = webRespon.GetResponseStream();
  89.                 StreamReader sr = new StreamReader(s);
  90. //讀取伺服器端返回的訊息
  91.                 String sReturnString = sr.ReadLine();
  92.                 s.Close();
  93.                 sr.Close();
  94. if (sReturnString == "Success")
  95.                 {
  96.                     returnValue = 1;
  97.                 }
  98. elseif (sReturnString == "Error")
  99.                 {
  100.                     returnValue = 0;
  101.                 }
  102.             }
  103. catch
  104.             {
  105.                 returnValue = 0;
  106.             }
  107. finally
  108.             {
  109.                 fs.Close();
  110.                 r.Close();
  111.             }
  112. return returnValue;
  113.         }

引數說明如下:

fileNamePath:要上傳的本地檔案,如:D:/test.rar

saveName:檔案上傳到伺服器後的名稱,如:200901011234.rar

progressBar:顯示檔案上傳進度的進度條。

接收檔案的WebForm新增一個Save.aspx頁面,Load方法如下:

  1. protectedvoid Page_Load(object sender, EventArgs e)
  2.         {
  3. if (Request.Files.Count > 0)
  4.             {
  5. try
  6.                 {
  7.                     HttpPostedFile file = Request.Files[0];
  8. string filePath = this.MapPath("UploadDocument") + "//" + file.FileName;
  9.                     file.SaveAs(filePath);
  10.                     Response.Write("Success/r/n");
  11.                 }
  12. catch
  13.                 {
  14.                     Response.Write("Error/r/n");
  15.                 }
  16.             }

同時需要配置WebConfig檔案的httpRuntime 如下:

<httpRuntime maxRequestLength="102400"  executionTimeout="300"/>

不能的話最大隻能上傳4M了。要是想上傳更大的檔案,maxRequestLength,executionTimeout設定大些,同時WinForm下的程式碼行

//設定獲得響應的超時時間(300秒)
            httpReq.Timeout = 300000;

也要修改,另外別忘了看看IIS的連線超時是否設定為足夠大。

一切都配置好了,執行效果如下:

為了解決這個問題,我查看了很多文章,記於此,以後遇到同樣的問題有個查詢的地方。