摘要:
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 read 阅读全文