• 大小: 0.05M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: 多线程  线程  下载  

资源简介

多线程下载, 下载的测试网址可以输入这个 http://www.youpaopao.com/apkdown/youpaopao.apk

下载后可以在 默认D盘中找到下载的文件

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Threading;

namespace DownLoadHttp3
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            Control.CheckForIllegalCrossThreadCalls = false;
            InitializeComponent();
        }

        private void Form1_Load(object sender EventArgs e)
        {
            this.txtSrcAddress.Text = @“http://www.100-try.com/soft/v.rar“;
            this.txtTarAddress.Text = @“D:“;
        }

        private void btnDown_Click(object sender EventArgs e)
        {
            //加到一个线程里面是为了防止假死
            Thread th = new Thread(new ThreadStart(this.DownLoad));

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      13824  2009-10-16 11:59  DownLoadHttp3\bin\Debug\DownLoadHttp3.exe

     文件      32256  2009-10-16 11:59  DownLoadHttp3\bin\Debug\DownLoadHttp3.pdb

     文件      14328  2009-10-19 09:30  DownLoadHttp3\bin\Debug\DownLoadHttp3.vshost.exe

     文件        490  2007-07-21 01:33  DownLoadHttp3\bin\Debug\DownLoadHttp3.vshost.exe.manifest

     文件       3403  2009-10-19 09:30  DownLoadHttp3\DownLoadHttp3.csproj

     文件        915  2009-10-19 09:30  DownLoadHttp3\DownLoadHttp3.sln

    ..A..H.     10240  2009-10-19 09:30  DownLoadHttp3\DownLoadHttp3.suo

     文件       1786  2009-10-16 11:58  DownLoadHttp3\Form1.cs

     文件       7159  2009-10-16 11:57  DownLoadHttp3\Form1.Designer.cs

     文件       6011  2009-10-16 11:57  DownLoadHttp3\Form1.resx

     文件        666  2009-10-19 09:30  DownLoadHttp3\obj\Debug\DownLoadHttp3.csproj.FileListAbsolute.txt

     文件        847  2009-10-16 11:59  DownLoadHttp3\obj\Debug\DownLoadHttp3.csproj.GenerateResource.Cache

     文件      13824  2009-10-16 11:59  DownLoadHttp3\obj\Debug\DownLoadHttp3.exe

     文件        180  2009-10-16 11:59  DownLoadHttp3\obj\Debug\DownLoadHttp3.Form1.resources

     文件      32256  2009-10-16 11:59  DownLoadHttp3\obj\Debug\DownLoadHttp3.pdb

     文件        180  2009-10-16 11:04  DownLoadHttp3\obj\Debug\DownLoadHttp3.Properties.Resources.resources

     文件        474  2009-10-16 08:08  DownLoadHttp3\Program.cs

     文件       1370  2009-10-16 08:08  DownLoadHttp3\Properties\AssemblyInfo.cs

     文件       2876  2009-10-16 08:08  DownLoadHttp3\Properties\Resources.Designer.cs

     文件       5612  2009-10-16 08:08  DownLoadHttp3\Properties\Resources.resx

     文件       1098  2009-10-16 08:08  DownLoadHttp3\Properties\Settings.Designer.cs

     文件        249  2009-10-16 08:08  DownLoadHttp3\Properties\Settings.settings

     文件       7383  2009-10-16 11:51  DownLoadHttp3\ThreadDownload.cs

     目录          0  2009-10-19 09:10  DownLoadHttp3\obj\Debug\Refactor

     目录          0  2009-10-19 09:10  DownLoadHttp3\obj\Debug\TempPE

     目录          0  2009-10-19 09:10  DownLoadHttp3\bin\Debug

     目录          0  2009-10-19 09:10  DownLoadHttp3\obj\Debug

     目录          0  2009-10-19 09:10  DownLoadHttp3\bin

     目录          0  2009-10-19 09:10  DownLoadHttp3\obj

     目录          0  2009-10-19 09:10  DownLoadHttp3\Properties

............此处省略4个文件信息

评论

共有 条评论