热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

用C#Builder实现文件下载(转)

用C#Builder实现文件下载(转)[more]作者:徐长友一.概述:本文通过一个实例向大家介绍用C#Builder进行Inte.NET
用C# Builder实现文件下载 (转)[@more@]作者:徐长友

一.概述: 
   本文通过一个实例向大家介绍用C# Builder进行Inte.NET通讯编程的一些基本知识。我们知道.Net类包含了请求/响应层、应用协议层、传输层等层次。在本程序中,我们运用了位于请求/响应层的webRequest类以及WebClient类等来实现高抽象程度的Internet通讯服务。本程序的功能是完成文件的下载。
二.实现原理: 
   程序实现的原理比较简单,主要用到了WebClient类和FileStream类。其中WebClient类处于System.Net名字空间中,该类的主要功能是提供向URI标识的资源发送数据和从URI标识的资源接收数据的公共方法。我们利用其中的DownFile()方法将文件下载到本地。然后用FileStream类的实例对象以数据流的方式将文件数据写入本地文件。这样就完成了文件的下载。
三.实现步骤:
 1.首先,打开C# Builder,File->New->C# Application,Name这里我们设为"DOWNLOAD"。 
 2.主界界的设置。text设为“文件下载”,StartPosition设为CenterScreen,MaximizeBox设为False,我们在主窗体上添加如下控件:两个标签控件label1,label2、一个文本框控件textBox1、一个按钮控件button1以及一个进度条控件progressBar1。
 label1:text为URL;Label2:text为下载进度;textBox1:text设为空;button1:text设为下载;
 3.程序的编码
 //过程downfile,用于完成文件的下载
 private void downfile()
 {
 string FileName;
 WebClient DownFile=new WebClient();
 long fbytes;
 if (textBox1.Text!="")
 {
 saveFileDialog1.ShowDialog();
 FileName=saveFileDialog1.FileName;
 if(FileName!= "")
 {
 //取得文件大小
 WebRequest wr_request=WebRequest.Create(textBox1.Text);
 WebResponse wr_response=wr_request.GetResponse();
 fbytes=wr_response.ContentLength;
 progressBar1.Maximum=(int)fbytes;
 progressBar1.Step=1;
 wr_response.Close();
 //开始下载数据
 DownFile.DownloadData(textBox1.Text);
 Stream strm = DownFile.OpenRead(textBox1.Text);
 StreamReader reader = new StreamReader(strm);
 byte[] mbyte = new byte[fbytes];
 int allmybyte = (int)mbyte.Length;
 int startmbyte = 0;
 while(fbytes>0)
 {
 int m = strm.Read(mbyte,startmbyte,allmybyte);
 if(m==0) break;
 startmbyte+=m;
 allmybyte-=m;
 progressBar1.value+=m;
 }
 FileStream fstrm = new FileStream(FileName,FileMode.OpenOrCreate,FileAccess.Write);
 fstrm.Write(mbyte,0,startmbyte);
 strm.Close();
 fstrm.Close();
 progressBar1.value=progressBar1.Maximum;
 }
 } else
 {
 MessageBox.Show("没有输入要下载的文件!");
 }
 } 

 //双击“下载”按钮,输入以下代码:
 Thread th = new Thread(new ThreadStart(downfile));
 th.Start();

 //完整的代码如下:
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 download
{
 /// 
 /// Summary description for WinForm.
 /// 
 public class WinForm : System.Windows.Forms.Form
 {
 /// 
 /// Required designer variable.
 /// 
 private System.ComponentModel.Container components = null;
 private System.Windows.Forms.Label label1;
 private System.Windows.Forms.TextBox textBox1;
 private System.Windows.Forms.Button button1;
 private System.Windows.Forms.SaveFileDialog saveFileDialog1;
 private System.Windows.Forms.Label label2;
 private System.Windows.Forms.ProgressBar progressBar1;

 public WinForm()
 {
 //
 // Required for Windows Form Designer support
 //
 InitializeComponent();

 //
 // TODO: Add any constructor code after InitializeComponent call
 //
 }

 /// 
 /// Clean up any resources being used.
 /// 
 protected override void Dispose (bool disposing)
 {
 if (disposing)
 {
 if (components != null)
 {
 components.Dispose();
 }
 }
 base.Dispose(disposing);
 }

 #region Windows Form Designer generated code
 /// 
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// 
 private void InitializeComponent()
 {
 this.label1 = new System.Windows.Forms.Label();
 this.textBox1 = new System.Windows.Forms.TextBox();
 this.button1 = new System.Windows.Forms.Button();
 this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
 this.label2 = new System.Windows.Forms.Label();
 this.progressBar1 = new System.Windows.Forms.ProgressBar();
 this.SuspendLayout();
 // 
 // label1
 // 
 this.label1.Location = new System.Drawing.Point(40, 40);
 this.label1.Name = "label1";
 this.label1.Size = new System.Drawing.Size(40, 16);
 this.label1.TabIndex = 0;
 this.label1.Text = "URL:";
 // 
 // textBox1
 // 
 this.textBox1.Location = new System.Drawing.Point(72, 36);
 this.textBox1.Name = "textBox1";
 this.textBox1.Size = new System.Drawing.Size(256, 21);
 this.textBox1.TabIndex = 1;
 this.textBox1.Text = "";
 // 
 // button1
 // 
 this.button1.Location = new System.Drawing.Point(256, 120);
 this.button1.Name = "button1";
 this.button1.TabIndex = 2;
 this.button1.Text = "下载";
 this.button1.Click += new System.EventHandler(this.button1_Click);
 // 
 // label2
 // 
 this.label2.Location = new System.Drawing.Point(8, 80);
 this.label2.Name = "label2";
 this.label2.Size = new System.Drawing.Size(72, 23);
 this.label2.TabIndex = 3;
 this.label2.Text = "下载进度:";
 // 
 // progressBar1
 // 
 this.progressBar1.Location = new System.Drawing.Point(72, 80);
 this.progressBar1.Name = "progressBar1";
 this.progressBar1.Size = new System.Drawing.Size(256, 16);
 this.progressBar1.TabIndex = 4;
 // 
 // WinForm
 // 
 this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
 this.ClientSize = new System.Drawing.Size(360, 173);
 this.Controls.Add(this.progressBar1);
 this.Controls.Add(this.label2);
 this.Controls.Add(this.button1);
 this.Controls.Add(this.textBox1);
 this.Controls.Add(this.label1);
 this.MaximizeBox = false;
 this.Name = "WinForm";
 this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
 this.Text = "文件下载";
 this.ResumeLayout(false);
 }
 #endregion

 /// 
 /// The main entry point for the application.
 /// 
 [STAThread]
 static void Main() 
 {
 Application.Run(new WinForm());
 }

 private void downfile()
 {
 string FileName;
 WebClient DownFile=new WebClient();
 long fbytes;
 if (textBox1.Text!="")
 {
 saveFileDialog1.ShowDialog();
 FileName=saveFileDialog1.FileName;
 if(FileName!= "")
 {
 //取得文件大小
 WebRequest wr_request=WebRequest.Create(textBox1.Text);
 WebResponse wr_response=wr_request.GetResponse();
 fbytes=wr_response.ContentLength;
 progressBar1.Maximum=(int)fbytes;
 progressBar1.Step=1;
 wr_response.Close();
 //开始下载数据
 DownFile.DownloadData(textBox1.Text);
 Stream strm = DownFile.OpenRead(textBox1.Text);
 StreamReader reader = new StreamReader(strm);
 byte[] mbyte = new byte[fbytes];
 int allmybyte = (int)mbyte.Length;
 int startmbyte = 0;
 while(fbytes>0)
 {
 int m = strm.Read(mbyte,startmbyte,allmybyte);
 if(m==0) break;
 startmbyte+=m;
 allmybyte-=m;
 progressBar1.value+=m;
 }
 FileStream fstrm = new FileStream(FileName,FileMode.OpenOrCreate,FileAccess.Write);
 fstrm.Write(mbyte,0,startmbyte);
 strm.Close();
 fstrm.Close();
 progressBar1.value=progressBar1.Maximum;
 }
 } else
 {
 MessageBox.Show("没有输入要下载的文件!");
 }
 }
 private void button1_Click(object sender, System.EventArgs e)
 {
 Thread th = new Thread(new ThreadStart(downfile));
 th.Start();
 }
 }
}


 4.按F9运行程序,输入一下载地址,点“下载”按钮试试。

CSDN_Dev_Image_a%20href=2003-7-142350191.jpg" οnlοad="Javascript:if(this.width>screen.width-430)this.width=screen.width-430" align=center border=0>
四.结束语: 
   以上用一个简单的例子向大家展示了如何用C# Builder实现文件的下载,我们不难发现用C# Builder进行Internet通讯编程是非常方便的。在上面的程序中,我们仅仅用到了WebClient类的一些方法,而WebClient类不只是提供了文件下载的方法,还提供了文件上传等方法,有兴趣的读者不妨自己试试,查查帮助。
 程序中使用了多线程,这是因为WebClient类占有的资源校大,在下载文件会使整个窗口的显示不完整。如果不用多线程的话,下载文件的时候,你根本没法移动窗口或进行其它的一些操作。
 有兴趣的朋友可以到我的主页下载源码 http://yousoft.hi.com.cn

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/10752043/viewspace-998917/,如需转载,请注明出处,否则将追究法律责任。

转:http://blog.itpub.net/10752043/viewspace-998917/



推荐阅读
  • 本文介绍了如何利用 Delphi 中的 IdTCPServer 和 IdTCPClient 控件实现高效的文件传输。这些控件在默认情况下采用阻塞模式,并且服务器端已经集成了多线程处理,能够支持任意大小的文件传输,无需担心数据包大小的限制。与传统的 ClientSocket 相比,Indy 控件提供了更为简洁和可靠的解决方案,特别适用于开发高性能的网络文件传输应用程序。 ... [详细]
  • WinMain 函数详解及示例
    本文详细介绍了 WinMain 函数的参数及其用途,并提供了一个具体的示例代码来解析 WinMain 函数的实现。 ... [详细]
  • 我有一个从C项目编译的.o文件,该文件引用了名为init_static_pool ... [详细]
  • 本文将介绍如何在混合开发(Hybrid)应用中实现Native与HTML5的交互,包括基本概念、学习目标以及具体的实现步骤。 ... [详细]
  • 如果应用程序经常播放密集、急促而又短暂的音效(如游戏音效)那么使用MediaPlayer显得有些不太适合了。因为MediaPlayer存在如下缺点:1)延时时间较长,且资源占用率高 ... [详细]
  • Flutter 2.* 路由管理详解
    本文详细介绍了 Flutter 2.* 中的路由管理机制,包括路由的基本概念、MaterialPageRoute 的使用、Navigator 的操作方法、路由传值、命名路由及其注册、路由钩子等。 ... [详细]
  • [转]doc,ppt,xls文件格式转PDF格式http:blog.csdn.netlee353086articledetails7920355确实好用。需要注意的是#import ... [详细]
  • 在Delphi7下要制作系统托盘,只能制作一个比较简单的系统托盘,因为ShellAPI文件定义的TNotifyIconData结构体是比较早的版本。定义如下:1234 ... [详细]
  • 本文详细解析了使用C++实现的键盘输入记录程序的源代码,该程序在Windows应用程序开发中具有很高的实用价值。键盘记录功能不仅在远程控制软件中广泛应用,还为开发者提供了强大的调试和监控工具。通过具体实例,本文深入探讨了C++键盘记录程序的设计与实现,适合需要相关技术的开发者参考。 ... [详细]
  • ButterKnife 是一款用于 Android 开发的注解库,主要用于简化视图和事件绑定。本文详细介绍了 ButterKnife 的基础用法,包括如何通过注解实现字段和方法的绑定,以及在实际项目中的应用示例。此外,文章还提到了截至 2016 年 4 月 29 日,ButterKnife 的最新版本为 8.0.1,为开发者提供了最新的功能和性能优化。 ... [详细]
  • 2020年9月15日,Oracle正式发布了最新的JDK 15版本。本次更新带来了许多新特性,包括隐藏类、EdDSA签名算法、模式匹配、记录类、封闭类和文本块等。 ... [详细]
  • VB.net 进程通信中FindWindow、FindWindowEX、SendMessage函数的理解
    目录一、代码背景二、主要工具三、函数解析1、FindWindow:2、FindWindowEx:3、SendMessage: ... [详细]
  • 本文介绍如何在 Android 中自定义加载对话框 CustomProgressDialog,包括自定义 View 类和 XML 布局文件的详细步骤。 ... [详细]
  • MicrosoftDeploymentToolkit2010部署培训实验手册V1.0目录实验环境说明3实验环境虚拟机使用信息3注意:4实验手册正文说 ... [详细]
  • 本文介绍了如何利用Struts1框架构建一个简易的四则运算计算器。通过采用DispatchAction来处理不同类型的计算请求,并使用动态Form来优化开发流程,确保代码的简洁性和可维护性。同时,系统提供了用户友好的错误提示,以增强用户体验。 ... [详细]
author-avatar
小小的dream
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有