最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
C#利用WebClient实现两种方式下载文件
时间:2022-06-25 07:54:58 编辑:袖梨 来源:一聚教程网
最近整理了WebClient 两种方式下载文件 ,留作以后查询。
第一种
| 代码如下 | 复制代码 |
|
stringURLAddress =@"http://xiazai.j*b5**1.net";
stringreceivePath=@"C:";
client.DownloadFile(URLAddress, receivePath + System.IO.Path.GetFileName(URLAddress)); | |
就OK了。
第二种
| 代码如下 | 复制代码 |
|
Stream str = client.OpenRead(URLAddress); StreamReader reader =newStreamReader(str); byte[] mbyte =newbyte[1000000]; intallmybyte = (int)mbyte.Length; intstartmbyte = 0;
while(allmybyte > 0) {
intm = str.Read(mbyte, startmbyte, allmybyte); if(m == 0) break;
startmbyte += m; allmybyte -= m; }
reader.Dispose(); str.Dispose();
stringpath = receivePath + System.IO.Path.GetFileName(URLAddress); FileStream fstr =newFileStream(path, FileMode.OpenOrCreate, FileAccess.Write); fstr.Write(mbyte, 0, startmbyte); fstr.Flush(); fstr.Close(); | |
相关文章
- 逆战未来在哪里预约 游戏预约方法汇总 01-04
- 逆战未来是什么类型的游戏 游戏类型及玩法介绍 01-04
- 逆战未来是哪个公司的 开发发行主体介绍 01-04
- 逆战未来最低配置要求是什么 全平台配置明细 01-04
- 逆战未来能搬砖吗 搬砖可行性与方法介绍 01-04
- 逆战未来是手游吗 游戏平台类型介绍 01-04