HTTPClient応答からのGZipストリームの解凍


93

WCFサービス(WCFサービスからWCFサービス)からGZipエンコードされたJSONを返すAPIに接続しようとしています。私が使用していますHTTPClientの APIに接続するために、文字列としてJSONオブジェクトを返すことができました。ただし、この返されたデータをデータベースに格納できるようにする必要があるので、JSONオブジェクトを返して配列またはバイトまたはそれらの行に沿った何かに格納するのが最善の方法であると考えました。

特に私が問題を抱えているのは、GZipエンコーディングの解凍であり、多くの異なる例を試みてきましたが、まだそれを取得できません。

以下のコードは、接続を確立して応答を取得する方法です。これは、APIから文字列を返すコードです。

public string getData(string foo)
{
    string url = "";
    HttpClient client = new HttpClient();
    HttpResponseMessage response;
    string responseJsonContent;
    try
    {
        client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
        response = client.GetAsync(url + foo).Result;
        responseJsonContent = response.Content.ReadAsStringAsync().Result;
        return responseJsonContent;
    }
    catch (Exception ex)
    {
        System.Windows.Forms.MessageBox.Show(ex.Message);
        return "";
    }
}

私はこれらのStackExchange APIMSDN、およびstackoverflowのカップルなどのいくつかの異なる例に従っていますが、これらのいずれかを機能させることができませんでした。

これを達成する最良の方法は何ですか、私は正しい軌道に乗っていますか?

みんなありがとう。


「JSONオブジェクトを返して配列またはバイトに格納するのが最善の方法です」文字列はバイトの配列であることに注意してください。
user3285954 2018

回答:


232

次のようにHttpClientをインスタンス化してください:

HttpClientHandler handler = new HttpClientHandler()
{
    AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate
};

using (var client = new HttpClient(handler))
{
    // your code
}

2020年6月19日更新: ポートを使い果たす可能性があるため、「using」ブロックでhttpclientを使用することはお勧めしません。

private static HttpClient client = null;

ContructorMethod()
{
   if(client == null)
   {
        HttpClientHandler handler = new HttpClientHandler()
        {
            AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate
        };        
        client = new HttpClient(handler);
   }
// your code            
 }

.Net Core 2.1以降を使用している場合は、IHttpClientFactoryを使用して、スタートアップコードにこのように挿入することを検討してください。

 var timeout = Policy.TimeoutAsync<HttpResponseMessage>(
            TimeSpan.FromSeconds(60));

 services.AddHttpClient<XApiClient>().ConfigurePrimaryHttpMessageHandler(() => new HttpClientHandler
        {
            AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate
        }).AddPolicyHandler(request => timeout);

この構造を使用する場合、httpClientから応答のコンテンツを取得するにはどうすればよいですか?私はc#に非常に慣れていないので、理解できていないと思います。
FoxDeploy 2017

1
@FoxDeployでは、このソリューションを使用するときにコードがコンテンツを取得するために必要な変更はありません。参考のためにここを参照してください:stackoverflow.com/questions/26597665/...
DIG

1
古い投稿ですが、この回答は.netcoreで私の問題を解決しました。1.1から2.0に移動すると、クライアントが自動的に解凍を行っているようです。そのため、このコードを2.0に追加して機能させる必要がありました。ありがとう!
セバスチャンカスタルディ2017年

3
@SebastianCastaldiに便乗するだけですが、.netコア1.1ではAutomaticDecompressionが適切に設定されていましたが、.netコア2.0ではNONEに設定されています。これは私が理解するのにあまりにも長い時間がかかりました...
KallDrexx '22

5
注:HttpClient内部では使用しないでくださいusing
imba-tjd

1

以下のリンクのコードを使用してGZipストリームを解凍し、解凍されたバイト配列を使用して必要なJSONオブジェクトを取得しました。それが誰かを助けることを願っています。

var readTask = result.Content.ReadAsByteArrayAsync().Result;
var decompressedData = Decompress(readTask);
string jsonString = System.Text.Encoding.UTF8.GetString(decompressedData, 0, decompressedData.Length);
ResponseObjectClass responseObject = Newtonsoft.Json.JsonConvert.DeserializeObject<ResponseObjectClass>(jsonString);

https://www.dotnetperls.com/decompress

static byte[] Decompress(byte[] gzip)
{
    using (GZipStream stream = new GZipStream(new MemoryStream(gzip), CompressionMode.Decompress))
    {
        const int size = 4096;
        byte[] buffer = new byte[size];
        using (MemoryStream memory = new MemoryStream())
        {
            int count = 0;
            do
            {
                count = stream.Read(buffer, 0, size);
                if (count > 0)
                {
                    memory.Write(buffer, 0, count);
                }
            }
            while (count > 0);
            return memory.ToArray();
        }
    }
}

0

わかりましたので、最終的に問題を解決しました。より良い方法がある場合はお知らせください:-)

        public DataSet getData(string strFoo)
    {
        string url = "foo";

        HttpClient client = new HttpClient();
        HttpResponseMessage response;   
        DataSet dsTable = new DataSet();
        try
        {
               //Gets the headers that should be sent with each request
            client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
              //Returned JSON
            response = client.GetAsync(url).Result;
              //converts JSON to string
            string responseJSONContent = response.Content.ReadAsStringAsync().Result;
              //deserializes string to list
            var jsonList = DeSerializeJsonString(responseJSONContent);
              //converts list to dataset. Bad name I know.
            dsTable = Foo_ConnectAPI.ExtentsionHelpers.ToDataSet<RootObject>(jsonList);
              //Returns the dataset                
            return dsTable;
        }
        catch (Exception ex)
        {
            System.Windows.Forms.MessageBox.Show(ex.Message);
            return null;
        }
    }

       //deserializes the string to a list. Utilizes JSON.net. RootObject is a class that contains the get and set for the JSON elements

    public List<RootObject> DeSerializeJsonString(string jsonString)
    {
          //Initialized the List
        List<RootObject> list = new List<RootObject>();
          //json.net deserializes string
        list = (List<RootObject>)JsonConvert.DeserializeObject<List<RootObject>>(jsonString);

        return list;
    }

RootObjectには、JSONの値を取得するgetセットが含まれています。

public class RootObject
{  
      //These string will be set to the elements within the JSON. Each one is directly mapped to the JSON elements.
      //This only takes into account a JSON that doesn't contain nested arrays
    public string EntityID { get; set; }

    public string Address1 { get; set; }

    public string Address2 { get; set; }

    public string Address3 { get; set; }

}

上記のクラスを作成する最も簡単な方法は、json2charpを使用して、それに応じてフォーマットし、正しいデータ型を提供することです。

以下は、Stackoverflowに関する別の回答からの引用 ですが、ネストされたJSONは考慮されていません。

    internal static class ExtentsionHelpers
{
    public static DataSet ToDataSet<T>(this List<RootObject> list)
    {
        try
        {
            Type elementType = typeof(RootObject);
            DataSet ds = new DataSet();
            DataTable t = new DataTable();
            ds.Tables.Add(t);

            try
            {
                //add a column to table for each public property on T
                foreach (var propInfo in elementType.GetProperties())
                {
                    try
                    {
                        Type ColType = Nullable.GetUnderlyingType(propInfo.PropertyType) ?? propInfo.PropertyType;

                            t.Columns.Add(propInfo.Name, ColType);

                    }
                    catch (Exception ex)
                    {
                        System.Windows.Forms.MessageBox.Show(ex.Message);
                    }

                }
            }
            catch (Exception ex)
            {
                System.Windows.Forms.MessageBox.Show(ex.Message);
            }

            try
            {
                //go through each property on T and add each value to the table
                foreach (RootObject item in list)
                {
                    DataRow row = t.NewRow();

                    foreach (var propInfo in elementType.GetProperties())
                    {
                        row[propInfo.Name] = propInfo.GetValue(item, null) ?? DBNull.Value;
                    }

                    t.Rows.Add(row);
                }
            }
            catch (Exception ex)
            {
                System.Windows.Forms.MessageBox.Show(ex.Message);
            }

            insert.insertCategories(t);
            return ds.
        }
        catch (Exception ex)
        {
            System.Windows.Forms.MessageBox.Show(ex.Message);

            return null;
        }
    }
};

次に、上記のデータセットをJSONにマップされた列を持つテーブルに挿入するために、SQL一括コピーと次のクラスを利用しました

public class insert
{ 
    public static string insertCategories(DataTable table)
    {     
        SqlConnection objConnection = new SqlConnection();
          //As specified in the App.config/web.config file
        objConnection.ConnectionString = System.Configuration.ConfigurationManager.ConnectionStrings["foo"].ToString();

        try
        {                                 
            objConnection.Open();
            var bulkCopy = new SqlBulkCopy(objConnection.ConnectionString);

            bulkCopy.DestinationTableName = "dbo.foo";
            bulkCopy.BulkCopyTimeout = 600;
            bulkCopy.WriteToServer(table);

            return "";
        }
        catch (Exception ex)
        {
            System.Windows.Forms.MessageBox.Show(ex.Message);
            return "";
        }
        finally
        {
            objConnection.Close();
        }         
    }
};

したがって、上記はwebAPIからデータベースにJSONを挿入するために機能します。これは私が仕事に取り組むものです。しかし、決して完璧だとは思いません。改善点がある場合は、それに応じて更新してください。


2
基になるストリームを適切かつタイムリーに破棄して閉じるために、あなた自身HttpClientとあなたのHttpResponse内部にusing()それぞれステートメントを作成する必要があります。
Ian Mercer
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.