在 Windows 应用商店应用程序中使用 httpclient 获取

Getting an UTF-8 response with httpclient in Windows Store apps(在 Windows 应用商店应用程序中使用 httpclient 获取 UTF-8 响应)
本文介绍了在 Windows 应用商店应用程序中使用 httpclient 获取 UTF-8 响应的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在构建一个 Windows 应用商店应用,但我一直无法从 API 获得 UTF-8 响应.

I'm building a Windows Store app, but I'm stuck at getting a UTF-8 response from an API.

这是代码:

using (HttpClient client = new HttpClient())
{
    Uri url = new Uri(BaseUrl + "/me/lists");

    HttpRequestMessage request = new HttpRequestMessage(HttpMethod.Get, url);
    request.Headers.Add("Accept", "application/json");
    HttpResponseMessage response = await client.SendRequestAsync(request);
    response.EnsureSuccessStatusCode();

    string responseString = await response.Content.ReadAsStringAsync();

    response.Dispose();
}

reponseString 总是包含奇怪的字符,应该是像 é 这样的重音符号,我尝试使用流,但我在一些示例中找到的 API 不存在于Windows RT.

The reponseString always contains strange characters which should be accents like é, and I tried using a stream, but the API I found in some examples don't exist in Windows RT.

改进的代码,仍然是同样的问题.

improved code, still same problem.

推荐答案

你可以使用 response.Content.ReadAsBufferAsync() 而不是直接使用 response.Content.ReadAsStringAsync()@Kiewic 指向的代码> 如下:

Instead of using response.Content.ReadAsStringAsync() directly you could use response.Content.ReadAsBufferAsync() pointed by @Kiewic as follows:

var buffer = await response.Content.ReadAsBufferAsync();
var byteArray = buffer.ToArray();
var responseString = Encoding.UTF8.GetString(byteArray, 0, byteArray.Length);

这在我的情况下有效,我想使用 UTF8 应该可以解决大部分问题.现在想想为什么没有办法使用 ReadAsStringAsync 来做到这一点:)

This is working in my case and I guess that using UTF8 should solve most of the issues. Now go figure why there is no way to do this using ReadAsStringAsync :)

这篇关于在 Windows 应用商店应用程序中使用 httpclient 获取 UTF-8 响应的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

DispatcherQueue null when trying to update Ui property in ViewModel(尝试更新ViewModel中的Ui属性时DispatcherQueue为空)
Drawing over all windows on multiple monitors(在多个监视器上绘制所有窗口)
Programmatically show the desktop(以编程方式显示桌面)
c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
LINQ many-to-many relationship, how to write a correct WHERE clause?(LINQ多对多关系,如何写一个正确的WHERE子句?)