溫馨提示×

C#中GET請求可以下載文件嗎

c#
小樊
163
2024-07-18 19:01:30
欄目: 編程語言

是的,C#中可以通過GET請求下載文件。可以使用System.Net.WebClient類來發(fā)送GET請求并下載文件。以下是一個示例代碼:

using System;
using System.Net;

class Program
{
    static void Main()
    {
        string fileUrl = "https://example.com/examplefile.txt";
        string savePath = @"C:\Downloads\examplefile.txt";

        WebClient client = new WebClient();
        client.DownloadFile(fileUrl, savePath);

        Console.WriteLine("File downloaded successfully.");
    }
}

在上面的示例中,我們使用WebClient類發(fā)送GET請求并下載文件。您可以將文件的URL和保存路徑替換為實際的文件URL和本地保存路徑。運行該代碼后將會下載文件到指定的保存路徑。

0