多线程之HttpClient
生活随笔
收集整理的這篇文章主要介紹了
多线程之HttpClient
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
在程序用調(diào)用 Http 接口、請求 http 資源、編寫 http 爬蟲等的時候都需要在程序集中進(jìn)行 Http 請求。
很多人習(xí)慣的 WebClient、HttpWebRequest 在 TPL 下很多用起來不方便的地方,TPL 下推薦使用 HttpClient(using System.Net.Http;),.net core 下已經(jīng)不支持 WebClient 等
HttpClient 發(fā) 出 Get 請 求 獲 取 文 本 響 應(yīng) : string html = await?hc.GetStringAsync("http://www.rupeng.com");
?HttpClient 發(fā)出Post請求使用
1 //第一個參數(shù)是請求的地址,第二個參數(shù)就是用來設(shè)置請求內(nèi)容的 2 Task<HttpResponseMessage> PostAsync(string requestUri, HttpContent content)HttpContent是一個抽象類:主要的子類有:
發(fā)送一個Get請求
1 private async void button1_Click(object sender, EventArgs e) 2 { 3 //發(fā)送異步的Get請求 4 HttpClient hc = new HttpClient(); 5 //await hc.GetByteArrayAsync() 6 //await hc.GetStreamAsync() 7 string html=await hc.GetStringAsync("http://127.0.0.1:8081/Home/Login"); 8 textBox1.Text = html; 9 }發(fā)送一個POST表單格式請求:
1 private async void button2_Click(object sender, EventArgs e) 2 { 3 HttpClient hc = new HttpClient(); 4 //List<KeyValuePair<string, string>> nameValues = new List<KeyValuePair<string, string>>(); 5 //nameValues.Add(new KeyValuePair<string, string>("userName", "admin123")); 6 //nameValues.Add(new KeyValuePair<string, string>("password", "123123123")); 7 //Dictionary也是實(shí)現(xiàn)了IEnumerable接口的,所以也可以這樣傳值 8 Dictionary<string, string> nameValues = new Dictionary<string, string>(); 9 nameValues["userName"] = "admin123"; 10 nameValues["password"] = "123123123"; 11 FormUrlEncodedContent content = new FormUrlEncodedContent(nameValues); 12 HttpResponseMessage msg= await hc.PostAsync("http://127.0.0.1:8081/Home/Login", content); 13 //msg.Content;返回的Http報問題 14 //msg.Headers;獲得響應(yīng)頭 15 //msg.StatusCode;獲得響應(yīng)的狀態(tài)碼 16 17 }發(fā)送一個POST字符串請求:
1 private async void button3_Click(object sender, EventArgs e) 2 { 3 string json = "{userName:'admin',password:'123'}"; 4 HttpClient client = new HttpClient(); 5 StringContent content = new StringContent(json); 6 //contentype 設(shè)置協(xié)議類型,必不可少 7 content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json"); 8 var respMsg = await client.PostAsync("http://127.0.0.1:6666/Home/Login2/", content); 9 string msgBody = await respMsg.Content.ReadAsStringAsync(); 10 }發(fā)送一個POST,Multipart 表單上傳請求:
1 private async void button4_Click(object sender, EventArgs e) 2 { 3 HttpClient client = new HttpClient(); 4 MultipartFormDataContent content = new MultipartFormDataContent(); 5 content.Headers.Add("UserName", "admin"); 6 content.Headers.Add("Password", "123"); 7 //先讀取文件 8 using (Stream stream = File.OpenRead(@"D:\temp\xx.png")) 9 { 10 // 放入流中 上傳接口協(xié)議名file 文件名 11 content.Add(new StreamContent(stream), "file", "logo.png"); 12 var respMsg = await client.PostAsync("http://127.0.0.1:6666/Home/Upload/", content); 13 string msgBody = await respMsg.Content.ReadAsStringAsync(); 14 MessageBox.Show(respMsg.StatusCode.ToString()); 15 MessageBox.Show(msgBody); 16 } 17 } View Code?
?
?
轉(zhuǎn)載于:https://www.cnblogs.com/cuijl/p/7656371.html
《新程序員》:云原生和全面數(shù)字化實(shí)踐50位技術(shù)專家共同創(chuàng)作,文字、視頻、音頻交互閱讀總結(jié)
以上是生活随笔為你收集整理的多线程之HttpClient的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 链地址的哈希表实现
- 下一篇: 剑指offer-链表中倒数第K个结点