呃,直接下载不行?
Network.DownloadFile("http://table.finance.yahoo.com/table.csv?s=000001.sz", "d:\temp.csv","" ,"" ,True, 100000, True)
直接读取也可以啊
Dim rqst As System.Net.HttpWebRequest = System.Net.HttpWebRequest.Create("http://table.finance.yahoo.com/table.csv?s=000001.sz")
Dim rsps As System.Net.HttpWebResponse = rqst.GetResponse
Dim stm As System.IO.Stream = rsps.GetResponseStream()
Dim reader As New System.IO.StreamReader(stm)
Dim str As String
Do
str = reader.ReadLine
output.show(str)
Loop While str > Nothing
stm.Dispose()
reader.close