`
isiqi
  • 浏览: 16825308 次
  • 性别: Icon_minigender_1
  • 来自: 济南
社区版块
存档分类
最新评论

用C# Builder实现文件下载程序

阅读更多
导读:
  一.概述:
  本文通过一个实例向大家介绍用C# Builder进行Internet通讯编程的一些基本知识。我们知道.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><br>  /// Summary description for WinForm. <br>  /// </summary>
  public class WinForm : System.Windows.Forms.Form
  {
  /// <summary><br>  /// Required designer variable. <br>  /// </summary>
  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
  //
  }
  /// <summary><br>  /// Clean up any resources being used. <br>  /// </summary>
  protected override void Dispose (bool disposing)
  {
  if (disposing)
  {
  if (components != null)
  {
  components.Dispose();
  }
  }
  base.Dispose(disposing);
  }
  #region Windows Form Designer generated code
  /// <summary><br>  /// Required method for Designer support - do not modify <br>  /// the contents of this method with the code editor. <br>  /// </summary>
  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
  /// <summary><br>  /// The main entry point for the application. <br>  /// </summary>
  [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运行程序,输入一下载地址,点“下载”按钮试试。

本文转自
http://study.qqcf.com/web/224/24007.htm
分享到:
评论

相关推荐

    用C# Builder实现生成PDF文档

    总之,"用C# Builder实现生成PDF文档"这个项目展示了如何在C#环境中利用特定库和控件来创建PDF文件,这对于开发者来说是一个实用的示例,有助于理解和掌握PDF生成的技术。通过研究提供的源码,我们可以学习到如何在...

    C# Builder 程序设计源码

    通过这些章节的学习,开发者不仅可以掌握C# Builder的基本使用,还能深入理解C#语言和.NET Framework的核心概念,从而能够构建出高效、稳定、功能丰富的应用程序。同时,对于Delphi 2005的提及,可能意味着源码中的...

    C#编写COM控件 Powerbuilder调用

    在实际应用中,需要注意的是,由于PowerBuilder支持的是ActiveX控件,而C#的WPF控件默认并不生成ActiveX,所以可能需要使用第三方库或工具(如.NET Framework的Interop Forms Toolkit)将WPF控件转换为ActiveX,以便...

    PB调用C#写的dll文件

    标题中的“PB调用C#写的dll文件”指的是在PowerBuilder(PB)应用程序中使用C#编译的动态链接库(DLL)文件。这通常涉及到跨语言互操作性,允许不同编程语言之间的通信和功能共享。 C#是一种现代、面向对象的编程...

    代码行统计工具(可用于对VC++、C++ Builder、Delphi、VB、C/C++、ASM、Java、C#、SQL 等程序源码进行详细的统计,可以准确的分析出程序中代码行、注释行和空白行的行数。)

    可用于对VC++、C++ Builder、Delphi、VB、C/C++、ASM、Java、C#、SQL 等程序源码进行详细的统计,可以准确的分析出程序中代码行、注释行和空白行的行数。程序会自动根据你选择的文件类型选择相应的统计方式,并将...

    C#使用directshow(C#实现库)实现的MP3音频结合图片合成电子视频相册的应用

    然后,将所有图片和MP3文件添加到项目的资源文件夹中,以便在程序中使用。 在代码中,我们首先创建一个DirectShow过滤器图。这通常涉及到初始化一个`FilterGraph`对象,它是整个过滤器图的核心。接着,我们需要添加...

    微信小程序上传下载文件服务器端代码.ASPNETCORE2.0

    在本文中,我们将深入探讨如何使用ASP.NET Core 2.0构建微信小游戏和小程序的文件上传及下载功能。微信小游戏和小程序提供了丰富的API接口,包括`wx.uploadFile`和`wx.downloadFile`,用于实现客户端的文件交互。而...

    C# 调用PB的DLL文件

    C# 调用 PB 的 DLL 文件是指在 C# 程序中使用_pb_(PowerBuilder)开发的 DataWindow.Net 组件来处理数据。DataWindow.Net 是 PB 专门为 MS.Net 开发的数据访问组件,允许开发者在 C# 程序中使用 PB 的功能。 主要...

    .net c#动态创建程序集、类、属性、方法等

    在.NET框架中,C#提供了一种强大的能力,即能够在运行时动态地创建程序集、类、属性和方法。这种技术通常被称为元编程或者反射,它允许开发者在代码执行过程中生成和修改代码,大大增强了软件的灵活性和可扩展性。在...

    Pb调用 c#编写的DLL

    在本文中,我们将探讨如何使用PowerBuilder (PB) 调用由C#编写的DLL。C#是一种现代化、类型安全且面向对象的编程语言,它具有丰富的库和功能,而PowerBuilder则是一款广泛用于构建客户端/服务器(MIS)系统的快速应用...

    C#.Code.Builder.V1.2.(C#代码生成器).产生支持多种数据库的实体代码

    1. 使用PowerDesigner设计的数据表结构可以直接转化为C#类代码,简化了从数据库设计到代码实现的过程。 2. 用户友好的界面设计,包括图像按钮,使操作更加直观。 3. 支持批量生成C#代码文件,避免手动逐个操作。 4. ...

    星POS支付powerbuilder源码.rar

    1. **PowerBuilder编程**:这是一种基于事件驱动的GUI应用程序开发工具,使用DataWindow控件进行数据库操作,具有强大的数据绑定和报表生成能力。 2. **星POS支付系统**:这是一种针对零售业或服务业的支付解决方案...

    非常漂亮的c#皮肤文件

    在C#编程中,皮肤文件是一种用户界面(UI)定制技术,它允许开发者为应用程序创建独特的外观和感觉,提升用户体验。皮肤文件通常包含颜色方案、图标、按钮样式、字体和其他UI元素的定义,使得程序可以根据用户的喜好...

    <C#Builder编程起跑线>全部例题代码

    《C#Builder编程起跑线》是一本专为初学者设计的C#编程教程,它旨在帮助读者快速掌握C#编程基础,理解.NET框架的核心概念,并通过实例代码深入学习。书中的例题代码是学习过程中的重要部分,它们涵盖了各种基本编程...

    wince.net platform builder 使用简介

    通过使用 Platform Builder,开发者能够创建(Create)、自定义(Customize)、构建(Build)、下载(Download)及调试(Debug)Windows CE 的系统映像文件。本指南旨在为读者提供一个全面的 Windows CE 架构概览,...

    powerbuilder11及以上版本发布.net web forms application的dll文件

    PowerBuilder 11 在部署 Web 应用时,PBScript 转换成 C# 的过程中需要一些特定的 DLL 文件,这些 DLL 文件位于指定路径中,例如 `C:\Sybase\PowerBuilder11.0\DotNET\bin` 或 `C:\Sybase\Shared\PowerBuilder`。...

    powerbuilder程序设计教程

    5. **调试与测试**: 使用PowerBuilder的调试工具进行程序调试,确保代码的正确性和性能。 6. **部署发布**: 最后,将应用程序打包成可执行文件,以便在其他机器上运行。 **三、高级特性** 1. **Web Enablement**: ...

    jihe.rar_C Builder_C#搜索

    C++ Builder主要基于C++语言,提供了丰富的组件库和IDE(集成开发环境)来加速Windows应用程序的开发,而C#是微软推出的一种面向对象的、类型安全的编程语言,广泛用于构建.NET框架的应用程序,尤其是在Web开发、...

    pb调用C#中COM组件实例(源码+运行EXE)

    3. **在PB中引用组件**:在PowerBuilder中,你可以通过“外接程序”或者“ActiveX控件”方式添加对C# COM组件的引用。在“外接程序”中,PB会搜索注册表找到对应的COM组件。 4. **调用组件方法**:引用成功后,PB就...

    实现c#调用matlab函数.doc实现c#调用matlab函数.doc

    ### 实现C#调用MATLAB函数的知识点详解 #### 一、背景介绍 随着.NET框架的广泛应用,很多开发者在构建复杂应用时可能会遇到需要利用MATLAB的强大计算能力的情况。MATLAB以其强大的数学处理功能而闻名,特别是在科学...

Global site tag (gtag.js) - Google Analytics