首页 > 代码库 > HttpClient设置编码类型

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");//设置编码方式
<script type="text/javascript"> $(function () { $(‘pre.prettyprint code‘).each(function () { var lines = $(this).text().split(‘\n‘).length; var $numbering = $(‘
    ‘).addClass(‘pre-numbering‘).hide(); $(this).addClass(‘has-numbering‘).parent().append($numbering); for (i = 1; i <= lines; i++) { $numbering.append($(‘
  • ‘).text(i)); }; $numbering.fadeIn(1700); }); }); </script>

HttpClient设置编码类型