0

我正在我的 Android 设备和服务器之间发送数据,由于某种原因,我的所有 é 都显示为 é。但它会正确显示在我的浏览器上(相同的数据)。通过一些搜索,我发现UTF编码可能与我的浏览器和设备不同。

如何显示具有特定 UTF 编码的 TextView?(UTF-8)。还是我可以设置应用程序范围的设置?提前致谢。

4

1 回答 1

0

抱歉,在这里找到了一个重复的解决方案: UTF8 Encoding in Android when invoking REST webservice

HttpResponse response = client.execute(request);
... // probably some other code to check for HTTP response status code
HttpEntity responseEntity = response.getEntity();
String xml = EntityUtils.toString(responseEntity, HTTP.UTF_8);
于 2013-09-04T20:54:21.487 回答