LWP::UserAgent介绍1
Posted FireC@t @ Perl6
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LWP::UserAgent介绍1相关的知识,希望对你有一定的参考价值。
1 require LWP::UserAgent; 2 3 my $ua = LWP::UserAgent->new; 4 $ua->timeout(10); 5 $ua->env_proxy; 6 7 my $response = $ua->get(‘http://search.cpan.org/‘); 8 9 if ($response->is_success) { 10 print $response->decoded_content; # or whatever 11 } 12 else { 13 die $response->status_line; 14 }
以上是关于LWP::UserAgent介绍1的主要内容,如果未能解决你的问题,请参考以下文章
为啥 LWP::UserAgent 是通过 require LWP::UserAgent 而不是使用 LWP::UserAgent 导入的?
Perl LWP::UserAgent 错误处理 UTF-8 响应