メソッド呼出しの実例 14 LWP::UserAgentを使ってWebページを得る use LWP::UserAgent; $ua = LWP::UserAgent->new; $ua->env_proxy; $req = HTTP::Request->new (GET => "http://localhost/"); $res = $ua->request($req); if ($res->is_success) { print $res->content; } else { print $res->status_line, "\n"; } (余談: この例は関数指向のモジュールでこうできる) perl -MLWP::Simple -e 'getprint("http://localhost/")'