最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
C#利用WebClient实现两种方式下载文件
时间:2022-06-25 07:54:58 编辑:袖梨 来源:一聚教程网
最近整理了WebClient 两种方式下载文件 ,留作以后查询。
第一种
代码如下 | 复制代码 |
stringURLAddress =@"http://xiazai.jb51.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(); |
相关文章
- 创造与魔法希腊恋人服装怎么获取 04-30
- 奇迹暖暖第二卷的3-2怎么过攻略 04-30
- 蛋仔派对潮玩大作战派对手册如何 04-30
- 奥比岛手游怎么改名字攻略 04-30
- 明日之后黑珍珠区蓝潮探索隐藏宝箱攻略 04-30
- 逆水寒手游人生八苦奇遇达成方法解析 04-30