首頁 > 後端開發 > C++ > 如何在 WCF 和 .NET Core 中使用 HttpClient 自動解壓縮 GZip 回應?

如何在 WCF 和 .NET Core 中使用 HttpClient 自動解壓縮 GZip 回應?

Susan Sarandon
發布: 2025-01-17 17:36:09
原創
519 人瀏覽過

How to Automatically Decompress GZip Responses Using HttpClient in WCF and .NET Core?

使用 HttpClient 高效處理壓縮的 HTTP 回應

許多 HTTP API 傳回壓縮資料(如 GZip),需要在使用前解壓縮。 本文示範如何在 WCF 服務和 .NET Core 應用程式中使用 HttpClient 自動解壓縮 GZip 回應。

要自動進行 GZip 解壓縮,請如下設定您的 HttpClient

<code class="language-csharp">HttpClientHandler handler = new HttpClientHandler()
{
  AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate
};

using (var client = new HttpClient(handler))
{
  // Your HTTP requests here
}</code>
登入後複製

這個簡單的新增可確保自動處理 GZip 和 Deflate 壓縮響應。

最佳實務:單例 HttpClient

為了避免資源耗盡(連接埠耗盡),最佳實踐是使用單例 HttpClient 實例:

<code class="language-csharp">private static HttpClient client = null;

public void InitializeClient()
{
  if (client == null)
  {
    HttpClientHandler handler = new HttpClientHandler()
    {
      AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate
    };
    client = new HttpClient(handler);
  }
  // Your code using 'client'
}</code>
登入後複製

.NET Core 2.1 及更高版本:IHttpClientFactory

對於 .NET Core 2.1 及更高版本,利用 IHttpClientFactory 進行依賴項注入和改進的管理:

<code class="language-csharp">var timeout = Policy.TimeoutAsync<HttpResponseMessage>(TimeSpan.FromSeconds(60));

services.AddHttpClient<XApiClient>().ConfigurePrimaryHttpMessageHandler(() => new HttpClientHandler
{
  AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate
}).AddPolicyHandler(request => timeout);</code>
登入後複製

這種方法與.NET Core依賴注入系統無縫集成,增強了可維護性和可測試性。

透過實作這些方法,您可以輕鬆且有效率地處理來自 HttpClient 的 GZip 壓縮回應,從而簡化您的資料處理工作流程。

以上是如何在 WCF 和 .NET Core 中使用 HttpClient 自動解壓縮 GZip 回應?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板