C#利用WebClient 两种方式下载文件

Posted 听雨的人

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#利用WebClient 两种方式下载文件相关的知识,希望对你有一定的参考价值。

 

WebClient client = new WebClient();

第一种

string URLAddress = @"http://files.cnblogs.com/x4646/tree.zip";

string receivePath=@"C:\\";

client.DownloadFile(URLAddress, receivePath + System.IO.Path.GetFileName(URLAddress));

就OK了。

第二种

 Stream str = client.OpenRead(URLAddress);
   StreamReader reader = new StreamReader(str);
   byte[] mbyte = new byte[1000000];
   int allmybyte = (int)mbyte.Length;
   int startmbyte = 0;

   while (allmybyte > 0)
   {

    int m = str.Read(mbyte, startmbyte, allmybyte);
    if (m == 0)
     break;

    startmbyte += m;
    allmybyte -= m;
   }

   reader.Dispose();
   str.Dispose();

   string path = receivePath + System.IO.Path.GetFileName(URLAddress);
   FileStream fstr = new FileStream(path, FileMode.OpenOrCreate, FileAccess.Write);
   fstr.Write(mbyte, 0, startmbyte);
   fstr.Flush();
   fstr.Close();

 

原文链接

 

相关连接         C#实现文件下载的几种方式

 

以上是关于C#利用WebClient 两种方式下载文件的主要内容,如果未能解决你的问题,请参考以下文章

WebClient 从服务器下载/获取文件方式

使用 C# Windows Forms 和 webclient 下载文件

C# WebClient 禁用缓存

C#调用JAVA接口WSSE方式用WebClient方式

c# 在WebClient 请求期间发生异常

看代码网备份|利用WebClient|eKing.CmdDownLoadDbBakOper|实现定时拷贝数据库备份文件到文件服务器