123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Net;
- using System.Text;
- using System.IO;
- using System.Net.Http;
- using System.Net.Http.Headers;
- using System.Threading.Tasks;
- using System.Xml.Serialization;
- namespace LYFZ.WinAPI
- {
- public class HttpClientHelper
- {
- /// <summary>
- /// get请求
- /// </summary>
- /// <param name="url"></param>
- /// <returns></returns>
- public static string GetResponse(string url)
- {
- if (url.StartsWith("https"))
- System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls;
- HttpClient httpClient = new HttpClient();
- httpClient.DefaultRequestHeaders.Accept.Add(
- new MediaTypeWithQualityHeaderValue("application/json"));
- HttpResponseMessage response = httpClient.GetAsync(url).Result;
- if (response.IsSuccessStatusCode)
- {
- string result = response.Content.ReadAsStringAsync().Result;
- return result;
- }
- return null;
- }
- /// <summary>
- /// post请求
- /// </summary>
- /// <param name="url"></param>
- /// <param name="postData">post数据</param>
- /// <returns></returns>
- public static string PostResponse(string url, string postData)
- {
- if (url.StartsWith("https"))
- System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls;
- HttpContent httpContent = new StringContent(postData);
- httpContent.Headers.ContentType = new MediaTypeHeaderValue("application/json");
- HttpClient httpClient = new HttpClient();
- HttpResponseMessage response = httpClient.PostAsync(url, httpContent).Result;
- if (response.IsSuccessStatusCode)
- {
- string result = response.Content.ReadAsStringAsync().Result;
- return result;
- }
- return null;
- }
-
- /// <summary>
- /// V3接口全部为Xml形式,故有此方法
- /// </summary>
- /// <typeparam name="T"></typeparam>
- /// <param name="url"></param>
- /// <param name="xmlString"></param>
- /// <returns></returns>
- public static T PostXmlResponse<T>(string url, string xmlString)
- where T : class,new()
- {
- if (url.StartsWith("https"))
- System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls;
- HttpContent httpContent = new StringContent(xmlString);
- httpContent.Headers.ContentType = new MediaTypeHeaderValue("application/json");
- HttpClient httpClient = new HttpClient();
- T result = default(T);
- HttpResponseMessage response = httpClient.PostAsync(url, httpContent).Result;
- if (response.IsSuccessStatusCode)
- {
- Task<string> t = response.Content.ReadAsStringAsync();
- string s = t.Result;
- result = XmlDeserialize<T>(s);
- }
- return result;
- }
- /// <summary>
- /// 反序列化Xml
- /// </summary>
- /// <typeparam name="T"></typeparam>
- /// <param name="xmlString"></param>
- /// <returns></returns>
- public static T XmlDeserialize<T>(string xmlString)
- where T : class,new ()
- {
- try
- {
- XmlSerializer ser = new XmlSerializer(typeof(T));
- using (StringReader reader = new StringReader(xmlString))
- {
- return (T)ser.Deserialize(reader);
- }
- }
- catch (Exception ex)
- {
- throw new Exception("XmlDeserialize发生异常:xmlString:" + xmlString + "异常信息:" + ex.Message);
- }
- }
- }
- }
|