文件名称:C#利用WebClient实现两种方式下载文件
文件大小:28KB
文件格式:PDF
更新时间:2024-01-15 15:54:02
ie li
最近整理了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)