国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 編程 > C# > 正文

C#限速下載網(wǎng)絡(luò)文件的方法實(shí)例

2019-10-29 21:16:52
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

C#限速下載網(wǎng)絡(luò)文件的方法,具體如下:

using System;using System.Collections.Concurrent;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.IO;using System.Linq;using System.Net;using System.Text;using System.Text.RegularExpressions;using System.Threading;using System.Threading.Tasks;using System.Windows.Forms;using Common.Utils;using Utils;namespace 爬蟲(chóng){  public partial class Form1 : Form  {    #region 變量    /// <summary>    /// 已完成字節(jié)數(shù)    /// </summary>    private long completedCount = 0;    /// <summary>    /// 是否完成    /// </summary>    private bool isCompleted = true;    /// <summary>    /// 數(shù)據(jù)塊隊(duì)列    /// </summary>    private ConcurrentQueue<MemoryStream> msQueue = new ConcurrentQueue<MemoryStream>();    /// <summary>    /// 下載開(kāi)始位置    /// </summary>    private long range = 0;    /// <summary>    /// 文件大小    /// </summary>    private long total = 0;    /// <summary>    /// 一段時(shí)間內(nèi)的完成節(jié)點(diǎn)數(shù),計(jì)算網(wǎng)速用    /// </summary>    private long unitCount = 0;    /// <summary>    /// 上次計(jì)時(shí)時(shí)間,計(jì)算網(wǎng)速用    /// </summary>    private DateTime lastTime = DateTime.MinValue;    /// <summary>    /// 一段時(shí)間內(nèi)的完成字節(jié)數(shù),控制網(wǎng)速用    /// </summary>    private long unitCountForLimit = 0;    /// <summary>    /// 上次計(jì)時(shí)時(shí)間,控制網(wǎng)速用    /// </summary>    private DateTime lastTimeForLimit = DateTime.MinValue;    /// <summary>    /// 下載文件sleep時(shí)間,控制速度用    /// </summary>    private int sleepTime = 1;    #endregion    #region Form1    public Form1()    {      InitializeComponent();    }    #endregion    #region Form1_Load    private void Form1_Load(object sender, EventArgs e)    {      lblMsg.Text = string.Empty;      lblByteMsg.Text = string.Empty;      lblSpeed.Text = string.Empty;    }    #endregion    #region Form1_FormClosing    private void Form1_FormClosing(object sender, FormClosingEventArgs e)    {    }    #endregion    #region btnDownload_Click 下載    private void btnDownload_Click(object sender, EventArgs e)    {      isCompleted = false;      btnDownload.Enabled = false;      string url = txtUrl.Text.Trim();      string filePath = CreateFilePath(url);      #region 下載線(xiàn)程      Thread thread = new Thread(new ThreadStart(() =>      {        int tryTimes = 0;        while (!HttpDownloadFile(url, filePath))        {          Thread.Sleep(10000);          tryTimes++;          LogUtil.Log("請(qǐng)求服務(wù)器失敗,重新請(qǐng)求" + tryTimes.ToString() + "次");          this.Invoke(new InvokeDelegate(() =>          {            lblMsg.Text = "請(qǐng)求服務(wù)器失敗,重新請(qǐng)求" + tryTimes.ToString() + "次";          }));          HttpDownloadFile(url, filePath);        }      }));      thread.IsBackground = true;      thread.Start();      #endregion      #region 保存文件線(xiàn)程      thread = new Thread(new ThreadStart(() =>      {        while (!isCompleted)        {          MemoryStream ms;          if (msQueue.TryDequeue(out ms))          {            using (FileStream fs = new FileStream(filePath, FileMode.Open, FileAccess.Write))            {              fs.Seek(completedCount, SeekOrigin.Begin);              fs.Write(ms.ToArray(), 0, (int)ms.Length);              fs.Close();            }            completedCount += ms.Length;          }          if (total != 0 && total == completedCount)          {            Thread.Sleep(100);            isCompleted = true;          }          Thread.Sleep(1);        }      }));      thread.IsBackground = true;      thread.Start();      #endregion      #region 計(jì)算網(wǎng)速/進(jìn)度線(xiàn)程      thread = new Thread(new ThreadStart(() =>      {        while (!isCompleted)        {          Thread.Sleep(1000);          if (lastTime != DateTime.MinValue)          {            double sec = DateTime.Now.Subtract(lastTime).TotalSeconds;            double speed = unitCount / sec / 1024;            try            {              #region 顯示速度              if (speed < 1024)              {                this.Invoke(new InvokeDelegate(() =>                {                  lblSpeed.Text = string.Format("{0}KB/S", speed.ToString("0.00"));                }));              }              else              {                this.Invoke(new InvokeDelegate(() =>                {                  lblSpeed.Text = string.Format("{0}MB/S", (speed / 1024).ToString("0.00"));                }));              }              #endregion              #region 顯示進(jìn)度              this.Invoke(new InvokeDelegate(() =>              {                string strTotal = (total / 1024 / 1024).ToString("0.00") + "MB";                if (total < 1024 * 1024)                {                  strTotal = (total / 1024).ToString("0.00") + "KB";                }                string completed = (completedCount / 1024 / 1024).ToString("0.00") + "MB";                if (completedCount < 1024 * 1024)                {                  completed = (completedCount / 1024).ToString("0.00") + "KB";                }                lblMsg.Text = string.Format("進(jìn)度:{0}/{1}", completed, strTotal);                lblByteMsg.Text = string.Format("已下載:{0}/r/n總大?。簕1}", completedCount, total);                if (completedCount == total)                {                  MessageBox.Show("完成");                }              }));              #endregion            }            catch { }            lastTime = DateTime.Now;            unitCount = 0;          }        }      }));      thread.IsBackground = true;      thread.Start();      #endregion      #region 限制網(wǎng)速線(xiàn)程      thread = new Thread(new ThreadStart(() =>      {        while (!isCompleted)        {          Thread.Sleep(100);          if (lastTimeForLimit != DateTime.MinValue)          {            double sec = DateTime.Now.Subtract(lastTimeForLimit).TotalSeconds;            double speed = unitCountForLimit / sec / 1024;            try            {              #region 限速/解除限速              double limitSpeed = 0;              if (double.TryParse(txtSpeed.Text.Trim(), out limitSpeed))              {                if (speed > limitSpeed && sleepTime < 1000)                {                  sleepTime += 1;                }                if (speed < limitSpeed - 10 && sleepTime >= 2)                {                  sleepTime -= 1;                }              }              else              {                this.Invoke(new InvokeDelegate(() =>                {                  txtSpeed.Text = "100";                }));              }              #endregion            }            catch { }            lastTimeForLimit = DateTime.Now;            unitCountForLimit = 0;          }        }      }));      thread.IsBackground = true;      thread.Start();      #endregion    }    #endregion    #region HttpDownloadFile 下載文件    /// <summary>    /// Http下載文件    /// </summary>    public bool HttpDownloadFile(string url, string filePath)    {      try      {        if (!File.Exists(filePath))        {          using (FileStream fs = new FileStream(filePath, FileMode.Create))          {            fs.Close();          }        }        else        {          FileInfo fileInfo = new FileInfo(filePath);          range = fileInfo.Length;        }        // 設(shè)置參數(shù)        HttpWebRequest request = WebRequest.Create(url) as HttpWebRequest;        request.UserAgent = "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0)";        request.Proxy = null;        //發(fā)送請(qǐng)求并獲取相應(yīng)回應(yīng)數(shù)據(jù)        HttpWebResponse response = request.GetResponse() as HttpWebResponse;        if (response.ContentLength == range)        {          this.Invoke(new InvokeDelegate(() =>          {            lblMsg.Text = "文件已下載";          }));          return true;        }        // 設(shè)置參數(shù)        request = WebRequest.Create(url) as HttpWebRequest;        request.UserAgent = "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0)";        request.Proxy = null;        request.AddRange(range);        //發(fā)送請(qǐng)求并獲取相應(yīng)回應(yīng)數(shù)據(jù)        response = request.GetResponse() as HttpWebResponse;        //直到request.GetResponse()程序才開(kāi)始向目標(biāo)網(wǎng)頁(yè)發(fā)送Post請(qǐng)求        Stream responseStream = response.GetResponseStream();        total = range + response.ContentLength;        completedCount = range;        MemoryStream ms = new MemoryStream();        byte[] bArr = new byte[1024];        lastTime = DateTime.Now;        lastTimeForLimit = DateTime.Now;        int size = responseStream.Read(bArr, 0, (int)bArr.Length);        unitCount += size;        unitCountForLimit += size;        ms.Write(bArr, 0, size);        while (!isCompleted)        {          size = responseStream.Read(bArr, 0, (int)bArr.Length);          unitCount += size;          unitCountForLimit += size;          ms.Write(bArr, 0, size);          if (ms.Length > 102400)          {            msQueue.Enqueue(ms);            ms = new MemoryStream();          }          if (completedCount + ms.Length == total)          {            msQueue.Enqueue(ms);            ms = new MemoryStream();          }          Thread.Sleep(sleepTime);        }        responseStream.Close();        return true;      }      catch (Exception ex)      {        LogUtil.LogError(ex.Message + "/r/n" + ex.StackTrace);        return false;      }    }    #endregion    #region 根據(jù)URL生成文件保存路徑    private string CreateFilePath(string url)    {      string path = Application.StartupPath + "//download";      if (!Directory.Exists(path))      {        Directory.CreateDirectory(path);      }      string fileName = Path.GetFileName(url);      if (fileName.IndexOf("?") > 0)      {        return path + "//" + fileName.Substring(0, fileName.IndexOf("?"));      }      else      {        return path + "//" + fileName;      }    }    #endregion  } //end Form1類(lèi)}

測(cè)試截圖:

C#限速下載,C#網(wǎng)絡(luò)限速,c#限制下載速度

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持VEVB武林網(wǎng)。


注:相關(guān)教程知識(shí)閱讀請(qǐng)移步到c#教程頻道。
發(fā)表評(píng)論 共有條評(píng)論
用戶(hù)名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 中江县| 库尔勒市| 常州市| 汝州市| 即墨市| 望谟县| 海口市| 宁阳县| 桃源县| 孟连| 河间市| 武乡县| 龙门县| 贞丰县| 于都县| 塔河县| 寿宁县| 甘孜| 水城县| 公主岭市| 临潭县| 蕉岭县| 左贡县| 澎湖县| 竹溪县| 紫金县| 武山县| 广南县| 甘谷县| 雅江县| 和硕县| 广南县| 广元市| 金门县| 邢台市| 万安县| 同仁县| 教育| 繁昌县| 泌阳县| 清丰县|