Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1193760
  • 博文数量: 146
  • 博客积分: 6619
  • 博客等级: 准将
  • 技术积分: 1621
  • 用 户 组: 普通用户
  • 注册时间: 2008-02-29 14:06
文章分类

全部博文(146)

文章存档

2020年(1)

2019年(4)

2018年(3)

2017年(5)

2015年(5)

2014年(7)

2013年(5)

2012年(11)

2011年(15)

2010年(13)

2009年(14)

2008年(63)

分类: Python/Ruby

2012-06-20 12:59:46

首先要知道perl只能处理两种编码:ascii码和utf-8ascii码是很少的,像中文、日文、韩文等字符要想能被perl处理,只能用 utf-8编码方式。网页内容读入后用decode处理一下,在print出去之前再用encode处理一下,就可以了。decode即解码成perl能处理的utf-8编码,encode则编码成输出终端能支持的编码,比如GBK

my $out = encode(“GBK”, $res->decoded_content());

或者

my $out = encode(“GBK”, decode(“utf-8”, $html->content()));

 
阅读(1685) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~