首页 > 编程语言 >C# winform实现下载带进度条

C# winform实现下载带进度条

时间:2024-12-31 14:12:12浏览次数:5  
标签:进度条 C# osize System Forms ------------- using winform

C# winform实现下载带进度条| Id | Title | DateAdded | SourceUrl | PostType | Body | BlogId | Description | DateUpdated | IsMarkdown | EntryName | CreatedTime | IsActive | AutoDesc | AccessPermission |

| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------|
| 16922231| C# winform实现下载带进度条| 2022-11-24T16:14:00| | BlogPost|

using System;
 using System.Collections.Generic;
 using System.ComponentModel;
 using System.Data;
 using System.Drawing;
 using System.Linq;
 using System.Text;
 using System.Threading.Tasks;
 using System.Windows.Forms;
 using MetroFramework.Forms;
 
 namespace KMS_Starter
 {
     public partial class Form2 : MetroForm
     {
         public Form2()
         {
             InitializeComponent();
         }
 
         private void Form2_Load(object sender, EventArgs e)
         {
 
         }
 
         private void metroButton1_Click(object sender, EventArgs e)
         {
             DownloadFile("http://localhost:1928/WebServer/downloader/123.rar", @"C:123.rar", metroProgressBar1, label2);
         }
         /// <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;
                     label2.Text = "当前补丁下载进度" + percent.ToString() + "%";
                     System.Windows.Forms.Application.DoEvents(); //必须加注这句代码,否则label1将因为循环执行太快而来不及显示信息
                 }
                 so.Close();
                 st.Close();
             }
             catch (System.Exception)
             {
                 throw;
             }
         }
     }
 }

 

| 648658| | 2022-11-24T16:14:00| false| | 2022-11-24T16:14:17.903| true| using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.| Anonymous|

标签:进度条,C#,osize,System,Forms,-------------,using,winform
From: https://www.cnblogs.com/ralphlauren/p/18621183

相关文章

  • C# WebBrowser 网页缩放的方法
    C#WebBrowser网页缩放的方法|Id|Title|DateAdded|SourceUrl|PostType|Body|BlogId|Description|DateUpdated|IsMarkdown|EntryName|CreatedTime|IsActive|AutoDesc|AccessPermission||-------------|-------------|-------------|----------......
  • C# FTP操作(上传、下载等……)
    C#FTP操作(上传、下载等……)|Id|Title|DateAdded|SourceUrl|PostType|Body|BlogId|Description|DateUpdated|IsMarkdown|EntryName|CreatedTime|IsActive|AutoDesc|AccessPermission||-------------|-------------|-------------|------------......
  • centos 删除文件,解压文件
    centos删除文件,解压文件|Id|Title|DateAdded|SourceUrl|PostType|Body|BlogId|Description|DateUpdated|IsMarkdown|EntryName|CreatedTime|IsActive|AutoDesc|AccessPermission||-------------|-------------|-------------|-------------|......
  • C#中几种换行符
    C#中几种换行符|Id|Title|DateAdded|SourceUrl|PostType|Body|BlogId|Description|DateUpdated|IsMarkdown|EntryName|CreatedTime|IsActive|AutoDesc|AccessPermission||-------------|-------------|-------------|-------------|---------......
  • C#中遍历Hashtable的4种方法
    C#中遍历Hashtable的4种方法|Id|Title|DateAdded|SourceUrl|PostType|Body|BlogId|Description|DateUpdated|IsMarkdown|EntryName|CreatedTime|IsActive|AutoDesc|AccessPermission||-------------|-------------|-------------|------------......
  • c#使用ShellExecute
    c#使用ShellExecute|Id|Title|DateAdded|SourceUrl|PostType|Body|BlogId|Description|DateUpdated|IsMarkdown|EntryName|CreatedTime|IsActive|AutoDesc|AccessPermission||-------------|-------------|-------------|-------------|--......
  • C#時間戳轉日期 互轉
    C#時間戳轉日期互轉|Id|Title|DateAdded|SourceUrl|PostType|Body|BlogId|Description|DateUpdated|IsMarkdown|EntryName|CreatedTime|IsActive|AutoDesc|AccessPermission||-------------|-------------|-------------|-------------|----......
  • C# 获取 appSettings 公共类
    C#获取appSettings公共类|Id|Title|DateAdded|SourceUrl|PostType|Body|BlogId|Description|DateUpdated|IsMarkdown|EntryName|CreatedTime|IsActive|AutoDesc|AccessPermission||-------------|-------------|-------------|------------......
  • C# 定时任务
    C#定时任务|Id|Title|DateAdded|SourceUrl|PostType|Body|BlogId|Description|DateUpdated|IsMarkdown|EntryName|CreatedTime|IsActive|AutoDesc|AccessPermission||-------------|-------------|-------------|-------------|------------......
  • Dictionary 添加重复的键值对
    Dictionary添加重复的键值对|Id|Title|DateAdded|SourceUrl|PostType|Body|BlogId|Description|DateUpdated|IsMarkdown|EntryName|CreatedTime|IsActive|AutoDesc|AccessPermission||-------------|-------------|-------------|-----------......