Web 服务响应中的特殊字符显示方框
Special charaters show square box in webservice response
这是我的网络服务响应中出现的单词发音 tækˈsɑ:nəmi
但是当我显示它时 android textview 它显示如下 tækÈsÉ:nÉmi 并且有时当我在 [=20 中显示它时它显示方框代替一些字符=] 文本视图。
请指导或提出一些解决方案。
阿里
请教了一位天才,找到了解决方法
DefaultHttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost(url);
httpPost.setHeader("Content-Type",
"application/x-www-form- urlencoded");
HttpResponse httpResponse = httpClient.execute(httpPost);
HttpEntity httpEntity = httpResponse.getEntity();
这是神奇的代码行。
xml = EntityUtils.toString(httpEntity, HTTP.UTF_8);
干杯。阿里
这是我的网络服务响应中出现的单词发音 tækˈsɑ:nəmi 但是当我显示它时 android textview 它显示如下 tækÈsÉ:nÉmi 并且有时当我在 [=20 中显示它时它显示方框代替一些字符=] 文本视图。
请指导或提出一些解决方案。
阿里
请教了一位天才,找到了解决方法
DefaultHttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost(url);
httpPost.setHeader("Content-Type",
"application/x-www-form- urlencoded");
HttpResponse httpResponse = httpClient.execute(httpPost);
HttpEntity httpEntity = httpResponse.getEntity();
这是神奇的代码行。
xml = EntityUtils.toString(httpEntity, HTTP.UTF_8);
干杯。阿里