• HttpClient PostAsync/GetAsync JSON Example


    PostAsync

    static readonly HttpClient Client = new HttpClient();
    public async Task<T> PostAsync<T>(string url, object data) where T : class, new()
    {
        try
        {
            string content = JsonConvert.SerializeObject(data);
            var buffer = Encoding.UTF8.GetBytes(content);
            var byteContent = new ByteArrayContent(buffer);
            byteContent.Headers.ContentType = new MediaTypeHeaderValue("application/json");
            var response = await Client.PostAsync(url, byteContent).ConfigureAwait(false);
            string result = await response.Content.ReadAsStringAsync();
            if (response.StatusCode != HttpStatusCode.OK)
            {
                logger.Error($"GetAsync End, url:{url}, HttpStatusCode:{response.StatusCode}, result:{result}");
                return new T();
            }
            logger.Info($"GetAsync End, url:{url}, result:{result}");
            return JsonConvert.DeserializeObject<T>(result);
        }
        catch (WebException ex)
        {
            if (ex.Response != null)
            {
                string responseContent = new StreamReader(ex.Response.GetResponseStream()).ReadToEnd();
                throw new System.Exception($"response :{responseContent}", ex);
            }
            throw;
        }
    }
    

      

    GetAsync

    static readonly HttpClient Client = new HttpClient();
    public async Task<string> GetAsync(string url, object data)
    {
        try
        {
            string requestUrl = $"{url}?{GetQueryString(data)}";
            logger.Info($"GetAsync Start, requestUrl:{requestUrl}");
            var response = await Client.GetAsync(requestUrl).ConfigureAwait(false);
            string result = await response.Content.ReadAsStringAsync();
            logger.Info($"GetAsync End, requestUrl:{requestUrl}, HttpStatusCode:{response.StatusCode}, result:{result}");
            return result;
        }
        catch (WebException ex)
        {
            if (ex.Response != null)
            {
                string responseContent = new StreamReader(ex.Response.GetResponseStream()).ReadToEnd();
                throw new Exception($"Response :{responseContent}", ex);
            }
            throw;
        }
    }
    
    private static string GetQueryString(object obj)
    {
        var properties = from p in obj.GetType().GetProperties()
                            where p.GetValue(obj, null) != null
                            select p.Name + "=" + HttpUtility.UrlEncode(p.GetValue(obj, null).ToString());
    
        return String.Join("&", properties.ToArray());
    }
    

      

  • 相关阅读:
    java文件分片上传,断点续传
    java-webuploader+Java如何实现分片+断点续传
    JAVA支持HTTP断点续传
    用Java 实现断点续传 (HTTP)
    java实现视频断点上传文件
    关于java实现断点续传的上传下载功能问题
    java文件断点续传的简单实现
    java实现文件的断点续传
    java HTTP文件断点上传
    怎样用Google APIs和Google的应用系统进行集成(5)----怎样把Google Tasks的JSON Schema转换成XML的Schema(XSD)?
  • 原文地址:https://www.cnblogs.com/XuPengLB/p/10860949.html
Copyright © 2020-2023  润新知