处理HTTP请求返回结果时,出现乱码是因为Charset编码格式设置不正确,通常设置UTF-8可以解决大部分情况,但并不是所有HTTP服务器都一定使用UTF-8格式,所以正确的方法是:


- 调用httpResponse.getEntiry()获取返回结果

- 调用ContentType.get()获取内容类型

- 调用ContentType.getCharset()获取编码格式

- 调用EntityUtils.toString()将返回结果格式化为字符串

public class RespStr implements ResponseHandler {
    @Override
    public String handleResponse(HttpResponse httpResponse) throws ClientProtocolException, IOException {
        HttpEntity entity = httpResponse.getEntity();
        ContentType contentType = ContentType.getOrDefault(entity);
        Charset charset = contentType.getCharset();
        return EntityUtils.toString(entity, charset);
    }
}


ResponseHandlerhttpclient包内提供的接口,实现函数handleResponse()处理HTTP返回结果。


示例代码Github下载:https://github.com/jextop/StarterApi/