码迷,mamicode.com
首页 > Windows程序 > 详细

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

时间:2017-05-10 23:38:44      阅读:436      评论:0      收藏:0      [点我收藏+]

标签:url   access   logs   receive   href   encoding   toe   key   ddr   

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();

 

利用webclient读取html内容

public static string GetWebClient(string url)

{
    string strHTML = "";
    WebClient myWebClient = new WebClient();            
    Stream myStream = myWebClient.OpenRead(url);
    StreamReader sr = new StreamReader(myStream, Encoding.Default);//注意编码
    strHTML = sr.ReadToEnd();
    myStream.Close();
    return strHTML;
}

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

标签:url   access   logs   receive   href   encoding   toe   key   ddr   

原文地址:http://www.cnblogs.com/vaevvaev/p/6838742.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!