将网页源代码下载到Perl中的字符串

时间:2011-09-19 19:55:42

标签: perl

我该怎么做?

我还想使用代理。我该怎么做?

1 个答案:

答案 0 :(得分:5)

use WWW::Mechanize;

my $mech = WWW::Mechanize->new();
$mech->get("http://foo.com/bar");
my $content = $mech->res()->content();

有关代理,请参阅the Mechanize FAQ