文件名称:C#下载文件显示下载进度及速度
文件大小:30KB
文件格式:ZIP
更新时间:2015-04-03 16:55:35
文件下载,进度,速度
C#下载文件
显示下载进度及速度
/// 开启界面刷新计时器 (不使用线程,防止阻塞造成界面刷新不及时)
timer1.Enabled = true;
try
{
WebRequest httpRequest = WebRequest.Create(tbFile.Text.Trim());
httpResponse = httpRequest.GetResponse();
pbDown.Maximum = (int)httpResponse.ContentLength;
}
catch (Exception _ex)
{
MessageBox.Show(_ex.Message);
lbInfo.Text = "点击按钮开始下载";
btnDownload.Enabled = true;
return;
}
timeStart = DateTime.Now;
/// 开启文件本地保存流
fileStream = new FileStream(tbFile.Text.Split('/').Last
【文件预览】:
download
----download.suo(18KB)
----download()
--------Program.cs(492B)
--------obj()
--------MainForm.resx(6KB)
--------MainForm.Designer.cs(5KB)
--------download.csproj(3KB)
--------MainForm.cs(4KB)
--------Properties()
----download.sln(866B)