C# WinForm下載檔案

來源:互聯網
上載者:User
        /// <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);        }

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.