using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WinShowDown
{
public partial class FrmMain : Form
{
public FrmMain()
{
InitializeComponent();
}
private void btnDown_Click(object sender, EventArgs e)
{
DownloadFile(":1928/WebServer/downloader/123.rar", @"C:\123.rar", progressBar1, label1);
}
/// <summary>
/// c#,.net 下载文件
/// </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, System.Windows.Forms.Label label1)
{
float percent = 0;
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);
percent = (float)totalDownloadedByte / (float)totalBytes * 100;
label1.Text = "当前补丁下载进度" + percent.ToString() + "%";
System.Windows.Forms.Application.DoEvents(); //必须加注这句代码,,否则label1将因为循环执行太快而来不及显示信息
}
so.Close();
st.Close();
}
catch (System.Exception)
{
throw; } } }}
相关文章
- ASP.NET MVC应用程序实现下载功能和显示上传的图片
- C#实现文件下载
- NET(C#)接入Dubbo服务,Zookeeper作为Dubbo服务的注册中心,实现thrift协议访问接口(3)
- .net 实体类与json转换(.net自带类库实现)
- C#实现FTP文件的上传、下载功能、新建目录以及文件的删除
- asp.net实现调用带有输出参数的存储过程实例
- Asp.net C# 使用Newtonsoft.Json 实现DataTable转Json格式数据
- atitit. 文件上传带进度条 atiUP 设计 java c# php
- atitit.文件上传带进度条的实现原理and组件选型and最佳实践总结O7
- 通过Java SE 7自带的监控服务(WatchService API)实现类似.NET FileWatcher的功能