在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請求以下載文件。如果請求成功,就將響應內容寫入到本地文件中。最后,我們輸出下載結果。