WP8,怎么使用HttpClient?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WP8,怎么使用HttpClient?相关的知识,希望对你有一定的参考价值。

wp8里,由于要从网络获取东西,所以在网上找了下关于http的第三方库,找到了这个 System.Net.Http HttpClient这个库,但是不知道怎么使用,各位兄弟有使用这个的小demo或者代码片段吗? ,主要是关于get,post就可以了!!在此谢过了!

参考技术A post:[mw_shl_code=csharp,true] client = new HttpClient(); client.Timeout = TimeSpan.FromSeconds(KTimeOut * 1.5); var responseContent = new StringContent(Context, Encoding.UTF8, "application/x-www-form-urlencoded"); HttpResponseMessage httpResponse = await client.PostAsync(RequestUrl, responseContent); httpResponse.EnsureSuccessStatusCode(); responseContent.Dispose(); return await httpResponse.Content.ReadAsStreamAsync();[/mw_shl_code]get:[mw_shl_code=csharp,true] HttpClient hclient = new HttpClient(); hclient.Timeout = TimeSpan.FromSeconds(KTimeOut); HttpResponseMessage httpResponse = await hclient.GetAsync(RequestUrl); httpResponse.EnsureSuccessStatusCode(); return await httpResponse.Content.ReadAsStreamAsync();[/mw_shl_code] 参考技术B 和其他.NET项目中的用法一样。

UWP&WP8.1 中文网页字符乱码 字符乱码 UTF-8转GBK 解决方法

UWP 方法

  async void Download()
        {
            /*新建HttpClient*/
            HttpClient web_ = new HttpClient();
            /*使用HttpClient的GetAsync方法下载*/
            var res = await web_.GetAsync(new Uri("http://dzs.qisuu.com/txt/%E6%AD%A6%E9%81%93%E7%B3%BB%E7%BB%9F%E4%B9%8B%E8%8D%89%E6%B0%91%E5%B4%9B%E8%B5%B7.txt"));
            /*注册桌面程序可使用的字符编码*/
            Encoding.RegisterProvider(CodePagesEncodingProvider.Instance);
            /*注册GBK*/
            Encoding encodingGbk = Encoding.GetEncoding("GBK");
            /*转换编码*/
            Stream StreamToReader = await res.Content.ReadAsStreamAsync(); 
            /*使用StreamReader的新实例:stream流,字符编码 */   
            StreamReader sr = new StreamReader(StreamToReader,encodingGbk);
            /*异步读取全部字符*/
            string Text = await sr.ReadToEndAsync();    
            /*赋值到TextBox控件*/     
            T.Text += Text;
        }

截图:

WP8.1 方法:

 HttpClient web_ = new HttpClient();
            var res = await web_.GetAsync(new Uri("http://dzs.qisuu.com/txt/%E6%AD%A6%E9%81%93%E7%B3%BB%E7%BB%9F%E4%B9%8B%E8%8D%89%E6%B0%91%E5%B4%9B%E8%B5%B7.txt"));           
            /*转换字符*/
            var Text = await res.Content.ReadAsStringAsync();
            box.Text = Text;

上面是解决方法。不论你用什么方法读取字符,或者网页。在UWP在中一定要转换成stream,并且注册GBK,在通过SteramReader读取。WP8.1中就相对简单了,两种方法(UWP和WP8.1)都可以使用的。

以上是关于WP8,怎么使用HttpClient?的主要内容,如果未能解决你的问题,请参考以下文章

httpClient 配置与测试

HttpClient和HttpURLConnection的区别

HTTPClient模块的HttpGet和HttpPost

UWP&WP8.1 中文网页字符乱码 字符乱码 UTF-8转GBK 解决方法

HttpClient 如何在一个地方捕获每个响应

Angular 5 HttpClient 与以前的 Http 相比有啥优势?