在C#中实现HTTP下载文件的方法是使用HttpClient
类发送HTTP请求并下载文件。以下是一个简单的示例代码:
using System;
using System.Net.Http;
using System.Threading.Tasks;
class Program
{
static async Task Main(string[] args)
{
string url = "https://example.com/file.jpg";
string savePath = "C:\\path\\to\\save\\file.jpg";
using (var client = new HttpClient())
{
var response = await client.GetAsync(url);
if (response.IsSuccessStatusCode)
{
using (var fileStream = System.IO.File.Create(savePath))
{
await response.Content.CopyToAsync(fileStream);
}
Console.WriteLine("File downloaded successfully.");
}
else
{
Console.WriteLine($"Failed to download file. Status code: {response.StatusCode}");
}
}
}
}
在上面的示例中,我们首先创建一个HttpClient
实例,然后发送一个GET请求以下载文件。如果请求成功,就将响应内容写入到本地文件中。最后,我们输出下载结果。