Winform下载文件
生活随笔
收集整理的這篇文章主要介紹了
Winform下载文件
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
/// <summary>/// 下載文件/// </summary>/// <param name="URL">下載文件地址</param>/// <param name="Filename">下載后的存放地址</param>/// <param name="Prog">用于顯示的進度條</param>public void DownloadFile(string URL, string filename, System.Windows.Forms.ProgressBar prog){try{ System.Net.HttpWebRequest Myrq = (System.Net.HttpWebRequest)System.Net.HttpWebRequest.Create(URL);System.Net.HttpWebResponse myrp = (System.Net.HttpWebResponse)Myrq.GetResponse();long totalBytes = myrp.ContentLength;if (prog != null){prog.Maximum = (int)totalBytes;}System.IO.Stream st = myrp.GetResponseStream();System.IO.Stream so = new System.IO.FileStream(filename, System.IO.FileMode.Create);long totalDownloadedByte = 0;byte[] by = new byte[1024];int osize = st.Read(by, 0, (int)by.Length);while (osize > 0){totalDownloadedByte = osize + totalDownloadedByte;System.Windows.Forms.Application.DoEvents();so.Write(by, 0, osize);if (prog != null){prog.Value = (int)totalDownloadedByte;} osize = st.Read(by, 0, (int)by.Length);}so.Close();st.Close();}catch (System.Exception){throw;}}/// <summary>/// 下載文件/// </summary>/// <param name="URL">下載文件地址</param>/// <param name="Filename">下載后的存放地址</param>public void DownloadFile(string URL, string filename){DownloadFile(URL, filename, null);}
總結
以上是生活随笔為你收集整理的Winform下载文件的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 2012年08月13日
- 下一篇: Ubuntu 12.04 一键安装lnm