using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Net;
using System.IO;
using System.Threading;
namespace MyGetCar
{
///
/// Form1 的摘要说明。
///
public class Form1 : System.Windows.Forms.Form
{
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox srcAddress;
private System.Windows.Forms.TextBox tarAddress;
private System.Windows.Forms.StatusBar statusBar;
private System.Windows.Forms.Button Start;
private WebClient client = new WebClient();
///
/// 必需的设计器变量。
///
private System.ComponentModel.Container components = null;
public Form1()
{
//
// Windows 窗体设计器支持所必需的
//
InitializeComponent();
//
// TODO: 在 InitializeComponent 调用后添加任何构造函数代码
//
}
///
/// 清理所有正在使用的资源。
///
protected override void Dispose( bool disposing )
{
if( disposing )
{
if (components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
#region Windows Form Designer generated code
///
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
///
private void InitializeComponent()
{
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.srcAddress = new System.Windows.Forms.TextBox();
this.tarAddress = new System.Windows.Forms.TextBox();
this.statusBar = new System.Windows.Forms.StatusBar();
this.Start = new System.Windows.Forms.Button();
this.button1 = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// label1
//
this.label1.Location = new System.Drawing.Point(8, 32);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(72, 23);
this.label1.TabIndex = 0;
this.label1.Text = "文件地址:";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// label2
//
this.label2.Location = new System.Drawing.Point(8, 72);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(72, 23);
this.label2.TabIndex = 1;
this.label2.Text = "另存到:";
this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// srcAddress
//
this.srcAddress.Location = new System.Drawing.Point(80, 32);
this.srcAddress.Name = "srcAddress";
this.srcAddress.Size = new System.Drawing.Size(216, 21);
this.srcAddress.TabIndex = 2;
this.srcAddress.Text = "";
//
// tarAddress
//
this.tarAddress.Location = new System.Drawing.Point(80, 72);
this.tarAddress.Name = "tarAddress";
this.tarAddress.Size = new System.Drawing.Size(216, 21);
this.tarAddress.TabIndex = 3;
this.tarAddress.Text = "";
//
// statusBar
//
this.statusBar.Location = new System.Drawing.Point(0, 151);
this.statusBar.Name = "statusBar";
this.statusBar.Size = new System.Drawing.Size(312, 22);
this.statusBar.TabIndex = 4;
//
// Start
//
this.Start.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.Start.Location = new System.Drawing.Point(216, 112);
this.Start.Name = "Start";
this.Start.Size = new System.Drawing.Size(75, 24);
this.Start.TabIndex = 5;
this.Start.Text = "开始下载";
this.Start.Click += new System.EventHandler(this.Start_Click);
//
// Form1
//
this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
this.ClientSize = new System.Drawing.Size(312, 173);
this.Controls.Add(this.button1);
this.Controls.Add(this.Start);
this.Controls.Add(this.statusBar);
this.Controls.Add(this.tarAddress);
this.Controls.Add(this.srcAddress);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.MaximizeBox = false;
this.Name = "Form1";
this.Text = "文件下载器";
this.ResumeLayout(false);
}
#endregion
///
/// 应用程序的主入口点。
///
[STAThread]
static void Main()
{
Application.Run(new Form1());
}
private void StartDownload()
{
Start.Enabled = false;
string URL = srcAddress.Text;
int n = URL.LastIndexOf("?");
string URLAddress = URL;
//string URLAddress = URL.Substring(0,n);
string fileName = URL.Substring(n+1,URL.Length-n-1);
string Dir = tarAddress.Text;
string Path = Dir+fileName;
try
{
WebRequest myre=WebRequest.Create(URLAddress);
}
catch(WebException exp)
{
MessageBox.Show(exp.Message,"Error");
}
try
{
statusBar.Text = "开始下载文件...";
client.DownloadFile(URLAddress,fileName);
Stream str = client.OpenRead(URLAddress);
//StreamReader reader = new StreamReader(str); ,这句没有什么必要!个人认为
byte[] mbyte = new byte[100000];
int allmybyte = (int)mbyte.Length;
int startmbyte = 0;
statusBar.Text = "正在接收数据...";
//写入到BYTE数组中,起缓冲作用
while(allmybyte>0)
{
int m = str.Read(mbyte,startmbyte,allmybyte);
if(m==0)
break;
startmbyte+=m;
allmybyte-=m;
}
FileStream fstr = new FileStream(Path,FileMode.OpenOrCreate,FileAccess.Write);
fstr.Write(mbyte,0,startmbyte);
str.Close();
fstr.Close();
statusBar.Text = "下载完毕!";
}
catch(WebException exp)
{
MessageBox.Show(exp.Message,"Error");
statusBar.Text = "";
}
Start.Enabled = true;
}
private void Start_Click(object sender, System.EventArgs e)
{
Thread th = new Thread(new ThreadStart(StartDownload));
th.Start();
}
}
}
分享到:
相关推荐
### 使用Visual C# 实现文件下载功能的知识点详解 #### 一、概述 在现代软件开发中,网络通信是一项非常重要的技术。对于.NET框架下的开发人员来说,掌握如何使用Visual C#实现网络文件的下载是一个实用且必备的...
### 使用 Visual C# 实现文件下载功能的知识点详解 #### 一、概述 在现代软件开发中,网络通信是一项非常重要的技术。对于.NET框架下的开发人员来说,掌握如何使用C#进行Internet通信是非常必要的技能之一。本文档...
在这个场景中,我们关注的是一个使用Visual C#实现的文件分割合并器。Visual C#是微软公司开发的一种面向对象的编程语言,它以其强大、高效和易用性被广泛应用于Windows平台的软件开发。 首先,让我们理解文件分割...
C#实现IIS服务器下载文件 本文将详细介绍如何使用C#语言实现IIS服务器下载文件的功能。通过使用WebClient类和FileStream类,可以实现高抽象程度的Internet通讯服务,并将网络文件下载到本地。 一、概述 本文通过...
《Visual C# 2005 文件IO与数据存取秘诀》是一本专注于探讨C#编程语言在处理文件输入输出(IO)以及数据存储方面的专著。由台湾微软的资深专家编写,这本书深入浅出地讲解了如何在C# 2005环境下有效地进行文件操作和...
第1章 Visual C#2008与窗体界面 第2章 Visual C# 2008与图形图像 第3章 Visual C#2008与多媒体 第4章 Visual C#2006与数据库 第5章 Visual C#2008的SQL查询与图表技朮 第6章 Visualc#2008的打印与水晶报表技术 ...
Visual C# 2005中,学习如何使用DataSet、DataTable、DataAdapter等对象进行数据库操作至关重要。 九、Web服务与WCF 了解如何创建和消费Web服务,以及Visual C# 2005中引入的Windows Communication Foundation ...
《Visual C# .NET程序设计经典》是一本深入探讨C# .NET编程的权威著作,旨在帮助读者掌握C#语言的基础以及.NET Framework的核心概念。这本书通过丰富的实例和详细讲解,引领开发者逐步熟悉并精通C# .NET编程环境。 ...
《Visual C# 2008程序设计经典案例设计与实现》是一本专注于利用Microsoft的Visual C# 2008开发工具进行程序设计的教材或参考书籍。这本书旨在通过一系列经典案例,帮助读者深入理解和掌握C#语言的特性和.NET ...
《Visual C# 2008程序设计经典案例设计与实现》是一本专注于利用Microsoft的C#编程语言在Visual Studio 2008环境下进行软件开发的实践指南。这本书涵盖了从基础到高级的各种主题,旨在帮助读者提升C#编程技能,并...
Visual+C#+2008程序设计经典案例设计与实现 第1章 Visual C#2008与窗体界面 案例1 飘动动画窗体 案例2 透明动画窗体 案例3 利用API函数实现动画窗体 案例4 闪烁动画窗体 案例5 滚动字幕动画窗体 案例6 超女卡通...
用Visual Csharp实现文件下载代码
《 Beginning Visual C# 2010 Programming code》是一本专为C#初学者设计的入门教程,旨在帮助读者快速掌握C#编程的基础知识。书中的代码实例是学习过程中的重要辅助工具,提供了实践和理解理论知识的平台。C#是一种...
Microsoft Visual C#(简称C#)是一种广泛应用于开发Windows应用程序的编程语言,它也可以用于实现与PLC的通信。在这个场景中,我们关注的是通过ADS(Automation Device Specification)协议来实现C#与TwinCAT PLC ...
【标题】"8 Visual C#.NET" 涵盖了微软开发环境下的C#编程语言,专注于使用Visual Studio工具进行应用程序开发。Visual C#是.NET框架的重要组成部分,它为开发者提供了一个高效、现代化的编程环境,用于构建各种类型...
《Visual C# 2005 文件IO与数据存取秘诀》是一本深入探讨C#编程中关于文件输入/输出(I/O)和数据存储技术的专业书籍,由章立民研究室著。这本书的重点在于教导读者如何高效地管理和操作文件,以及如何在C#环境中...
而"DrawImageNetC.cs"可能是用纯C#实现的图像处理逻辑,对比使用插件的方式,可能会在性能或灵活性上有所不同。 C#图像处理的一些常见操作包括: 1. **读取和写入图像**:使用Image类的FromFile方法加载图像,Save...
总之,这个教程将带你深入XML Web服务的世界,通过Visual Basic .NET和Visual C#.NET,你可以构建出强大的分布式应用程序,实现跨平台、跨网络的通信。结合MCAD-MCSD的认证学习路径,这将极大地提升你的.NET开发技能...
3. **Visual C#实现Web代理服务**: - 代理服务器首先监听指定端口,等待客户端的HTTP请求。 - 收到请求后,解析出目标Web服务器的地址,创建Socket实例连接到该服务器。 - 通过Socket发送客户端的HTTP请求数据到...