C#利用WebClient实现两种方式下载文件
时间:2021-01-04 16:12:13|栏目:.NET代码|点击: 次
最近整理了WebClient 两种方式下载文件 ,留作以后查询。
第一种
string URLAddress = @"http://xiazai.jb51.net"; 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();
上一篇:Asp.net Core Jenkins Docker实现一键化部署的实现
栏 目:.NET代码
下一篇:asp.net LC.exe已退出代码为 -1的原因分析及解决方法
本文地址:http://www.codeinn.net/misctech/40239.html