輕松操控C#下載url文件:WebClient與HttpClient實戰詳解
當前位置:點晴教程→知識管理交流
→『 技術文檔交流 』
概述:C#中通過WebClient或HttpClient可以輕松實現從URL下載文件,包括處理下載進度和失敗情況。這涉及網絡請求、文件流處理等技術,可根據項目需求選擇不同的方法。 在C#中,從URL下載文件是常見的網絡操作之一。實現下載涉及到網絡請求、文件流處理等方面的知識。 原理 文件下載的原理是通過HTTP請求從指定URL獲取文件的字節流,并將字節流寫入本地文件。下載進度通常通過監控字節流的接收情況來計算。 下載文件的方法 WebClient類
HttpClient類
處理下載進度 通過在下載過程中監聽響應流的變化,可以實時計算并展示下載進度。 處理下載失敗 在下載失敗時,可以捕獲異常并根據具體錯誤進行處理,例如重試或提示用戶。 示例源代碼 使用WebClient下載文件using System.Net; WebClient client = new WebClient(); client.DownloadFile("https://example.com/file.zip", "local/path/file.zip"); 使用HttpClient下載文件(包含下載進度)using System.Net.Http; using System.IO; async Task DownloadFileAsync(string url, string localPath) { using (HttpClient client = new HttpClient()) { using (HttpResponseMessage response = await client.GetAsync(url, HttpCompletionOption.ResponseHeadersRead)) { using (Stream stream = await response.Content.ReadAsStreamAsync()) { using (FileStream fileStream = new FileStream(localPath, FileMode.Create, FileAccess.Write, FileShare.None, 8192, true)) { byte[] buffer = new byte[8192]; int bytesRead; long totalBytesRead = 0; long totalBytes = response.Content.Headers.ContentLength ?? -1; while ((bytesRead = await stream.ReadAsync(buffer, 0, buffer.Length)) > 0) { await fileStream.WriteAsync(buffer, 0, bytesRead); totalBytesRead += bytesRead; // 處理下載進度,例如更新UI Console.WriteLine($"下載進度:{totalBytesRead}/{totalBytes}"); } } } } } } 注意事項及建議
從URL下載文件在C#中可通過 該文章在 2024/3/4 12:01:19 編輯過 |
關鍵字查詢
相關文章
正在查詢... |