Get a web page and save it to a local file : HTTP « Network « Perl






Get a web page and save it to a local file

    

use LWP::UserAgent;

$user_agent = new LWP::UserAgent;

$request = new HTTP::Request('GET', 
    'http://www.cpan.org/doc/FAQs/index.html');

$response = $user_agent->request($request);

open FILEHANDLE, ">file.txt";

print FILEHANDLE $response->{_content};

close FILEHANDLE;

   
    
    
    
  








Related examples in the same category

1.Using HTTP::Request to post request and save response to a file
2.Get a web page
3.Retrieving a Web Page with get()
4.Using getstore() to Print an Invalid Page
5.Using is_success() with getstore()
6.Setting a User Agent and Retrieving a Web Page