- 论坛徽章:
- 0
|
回复 #6 King_Leo 的帖子
eval {my $str2 = $str; Encode::decode("gbk", $str2, 1)};
print "not gbk: $@\n" if $@;
eval {my $str2 = $str; Encode::decode("utf8", $str2, 1)};
print "not utf8: $@\n" if $@;
eval {my $str2 = $str; Encode::decode("big5", $str2, 1)};
print "not big5: $@\n" if $@;
####################
use Thread 'async';
use Encode;
use LWP::UserAgent;
use Lingua::Han::Utils;
my @url = ('http://news.sina.com.cn/c/p/2008-05-22/020615590454.shtml',
'http://www.sohu.com','http://www.sina.com.cn','http://www.baidu.com');
sub get_title {
my $url = shift;
my $ua = new LWP::UserAgent;
$ua->timeout(5); # 设置timeout时限
my $hr = new HTTP::Request(GET=>$url);
my $res = $ua->request($hr);
if ($res->is_success) {
my $content = Lingua::Han::Utils::cdecode($res->header('Title'));
Encode::_utf8_off($content);
print $content, "\n";
}
}
my @t;
for my $i (0..3) {
push @t,Thread->new(\&get_title, $url[$i]);
}
for (@t) { $_->join;} |
|