HttpClient设置编码类型
Posted jhcelue
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HttpClient设置编码类型相关的知识,希望对你有一定的参考价值。
笔者引用的是commons-httpclient这个jar包httpclient
可是通过get/post方式获取带有中文页面的html文件时。返回的是乱码,在网上找了非常久。最终找到一个合适的:
HttpClient client = new HttpClient();
GetMethod getMethod = new getMethod("http://www.sougou.com");
getMethod.getParams().setParameter(HttpMethodParams.HTTP_CONTENT_CHARSET, "UTF-8");//设置编码方式
以上是关于HttpClient设置编码类型的主要内容,如果未能解决你的问题,请参考以下文章