| Programming C# C++ (7) Delphi (618) Java (8) JavaScript (30) perl (9) mysql (3) perl CGI (3) php (4) VBScript (1) Visual Basic (1) |
How can I download a file via http?
Question: How can I download a file via http?Answer: You could make a system call to lynx and read the input. This puts a bit more load on your computer and should not be used if you are going to retrieve many documents.You have more control and a more efficient solution using the LWP package (second part in the code below).
Comments:
|