downloading files from internet
-
- Posts: 9
- Joined: Thu Apr 27, 2006 2:06 pm
downloading files from internet
Hi
I need to download files from internet.Can anyone pls suggest a method how it can be done ?
Thanks
I need to download files from internet.Can anyone pls suggest a method how it can be done ?
Thanks
- Antonio Linares
- Site Admin
- Posts: 42731
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Has thanked: 95 times
- Been thanked: 108 times
- Contact:
-
- Posts: 9
- Joined: Thu Apr 27, 2006 2:06 pm
- Antonio Linares
- Site Admin
- Posts: 42731
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Has thanked: 95 times
- Been thanked: 108 times
- Contact:
-
- Posts: 9
- Joined: Thu Apr 27, 2006 2:06 pm
Hi Antonio
The URL below will download EOD prices of shares
http://www.nseindia.com/content/histori ... 06bhav.csv
The URL below will download EOD prices of shares
http://www.nseindia.com/content/histori ... 06bhav.csv
- James Bott
- Posts: 4840
- Joined: Fri Nov 18, 2005 4:52 pm
- Location: San Diego, California, USA
- Contact:
Rajeev,
Because IE recognizes the CSV extension, it displays the data in the browser rather than prompting the user for a download filename, then saving the data to a file.
Assuming you are not the one putting the data up on the net, then you have to find another way to collect the data. FW had a web client class you can use to read a web page. Below is the code to read the data into a varialble (cHTML). The data will come in with some header lines which you will then have to strip off, then you can just save cHTML to a file.
This code was tested with Harbour. I don't know if it will work with Clipper.
Regards,
James
Because IE recognizes the CSV extension, it displays the data in the browser rather than prompting the user for a download filename, then saving the data to a file.
Assuming you are not the one putting the data up on the net, then you have to find another way to collect the data. FW had a web client class you can use to read a web page. Below is the code to read the data into a varialble (cHTML). The data will come in with some header lines which you will then have to strip off, then you can just save cHTML to a file.
This code was tested with Harbour. I don't know if it will work with Clipper.
Regards,
James
Code: Select all | Expand
/*
Purpose: Example of how to get the HTML code for a web page
Date : 01/04/05
Notes : You must create a main window to use a socket.
I had to fix a bug in the TWebClient class, new method. It was returning nil
instead of self. TWEBCLIE.PRG was dated 11/11/1999 (came with FWH 2.4 July 2003).
The function ProcessPage does not return the code since it is collected in a socket
which may still be running when the function exits. You have to process the code
by assigning a function call to oWeb:oSocket:bClose
James Bott, jbott@compuserve.com
*/
#include "fivewin.ch"
#define FALSE .F.
#define TRUE .T.
function main()
local oWnd
define window oWnd
activate window oWnd ;
on init ProcessPage("http://www.nseindia.com/content/historical/EQUITIES/2006/APR/cm24APR2006bhav.csv")
return nil
function ProcessPage(cURL)
local oWeb
local cHTML:="" // contains HTML code
local cSite:=""
local cPage:=""
if left(upper(cURL),7) = "HTTP://"
cURL:= right(cURL,len(cURL)-7)
endif
cSite:= left(cURL, at("/",cURL)-1 )
cPage:= right(cURL,len(cURL)-at("/",cURL))
//msgInfo(cSite,"cSite")
//msgInfo(cPage,"cPage")
oWeb := TWebClient():New()
oWeb:oSocket:Cargo := FALSE
oWeb:bOnConnect = {|oWClient| oWClient:oSocket:Cargo := TRUE}
oWeb:bOnRead = {|cData| if(valtype(cData) == "C", cHTML += cData, )}
oWeb:Connect(cSite)
//msgInfo(cHTML)
// Keep trying to connect
while ! oWeb:oSocket:Cargo
WaitMessage()
SysRefresh()
enddo
// msgInfo("Connected to site")
oWeb:GetPage( cPage )
// Assign function to process code
oWeb:oSocket:bClose = {|self| ::end(), self:=Nil, Process(cHTML) }
//oWeb:oSocket:close()
sysrefresh()
//msgInfo("page collected")
//msgInfo(cHTML)
return nil
// Process the HTML code
function Process(cHTML)
msgInfo(cHTML,"HTML code") // for testing only
// Process the code here--save to file, extract data, etc.
return nil
// eof
//----------------------------------------------------------------------------//
-
- Posts: 9
- Joined: Thu Apr 27, 2006 2:06 pm
Hi James
Thanks for the program supplied for downloading the info from web page.When I ran that program I got the info displayed in a window.When I clicked the close button of the window I got following error message "Error BASE/1209 String Overflow: + from Errorsys,line:0".Pls advice how to overcome this problem.Is it occuring because info is more than 65K . I have noticed the CSV file size is between 65K-68K.If this is the case pls advice how to overcome this.
Digressing from the subject.A few years back when I had posted my first query on fivewin newsgroup you had answered it and introduced me to the concept of "Paying it forward".Eventhough I have not contributed anything to fivewin I try to reply to posts on other forums which I visit.It does give mental satisfaction when you help other people.
With Best Wishes
Rajeev Chavan
Thanks for the program supplied for downloading the info from web page.When I ran that program I got the info displayed in a window.When I clicked the close button of the window I got following error message "Error BASE/1209 String Overflow: + from Errorsys,line:0".Pls advice how to overcome this problem.Is it occuring because info is more than 65K . I have noticed the CSV file size is between 65K-68K.If this is the case pls advice how to overcome this.
Digressing from the subject.A few years back when I had posted my first query on fivewin newsgroup you had answered it and introduced me to the concept of "Paying it forward".Eventhough I have not contributed anything to fivewin I try to reply to posts on other forums which I visit.It does give mental satisfaction when you help other people.
With Best Wishes
Rajeev Chavan
- Antonio Linares
- Site Admin
- Posts: 42731
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Has thanked: 95 times
- Been thanked: 108 times
- Contact:
- James Bott
- Posts: 4840
- Joined: Fri Nov 18, 2005 4:52 pm
- Location: San Diego, California, USA
- Contact:
Rajeev,
Well, the best answer is like Antonio says, upgrade to 32bit. You are going to have to do this sooner or later.
Otherwise, you can try processing the data one line at a time and saving it to a file, instead of pasting it all together into one large string. Oh, and you don't need to display the data, I just put that in there for testing.
Take a look at the TTxtFile class for ideas how to write the data to a file as it is being read.
I'm glad you have been paying it forward.
James
Thanks for the program supplied for downloading the info from web page.When I ran that program I got the info displayed in a window.When I clicked the close button of the window I got following error message "Error BASE/1209 String Overflow: + from Errorsys,line:0".Pls advice how to overcome this problem.Is it occuring because info is more than 65K . I have noticed the CSV file size is between 65K-68K.If this is the case pls advice how to overcome this.
Well, the best answer is like Antonio says, upgrade to 32bit. You are going to have to do this sooner or later.
Otherwise, you can try processing the data one line at a time and saving it to a file, instead of pasting it all together into one large string. Oh, and you don't need to display the data, I just put that in there for testing.
Take a look at the TTxtFile class for ideas how to write the data to a file as it is being read.
I'm glad you have been paying it forward.
James
-
- Posts: 9
- Joined: Thu Apr 27, 2006 2:06 pm
- Antonio Linares
- Site Admin
- Posts: 42731
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Has thanked: 95 times
- Been thanked: 108 times
- Contact:
-
- Posts: 9
- Joined: Thu Apr 27, 2006 2:06 pm
- James Bott
- Posts: 4840
- Joined: Fri Nov 18, 2005 4:52 pm
- Location: San Diego, California, USA
- Contact:
-
- Posts: 9
- Joined: Thu Apr 27, 2006 2:06 pm
- Enrico Maria Giordano
- Posts: 8775
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Has thanked: 1 time
- Been thanked: 7 times
- Contact: