如何从雅虎财经检索数据到我的网站?
我正在制作一个 ASP.NET 网站,我想在其中检索雅虎财经的数据,例如:
http://finance.yahoo.com/d/quotes.csv?s=RHT+MSFT&f=sb2b3jk
我指的是上面的链接从雅虎财经获取数据。
上面的链接提供了 CSV 格式的数据。
那么我怎样才能从上面的链接获取数据到我的网站呢?任何代码或对某些教程的参考都会有很大帮助。
I am making an ASP.NET website where I want to retrieve data from Yahoo Finance, e.g.:
http://finance.yahoo.com/d/quotes.csv?s=RHT+MSFT&f=sb2b3jk
I am referring to above link to fetch data from Yahoo Finance.
The above link gives data in CSV format.
So how can I fetch data from the above link into my website? Any code or reference to some tutorial would be of great help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 System.Net.WebClient 请求 CSV ,然后类似 FileHelpers 将文件解析为可用对象。然后塞进你想要的东西。
Use the System.Net.WebClient to request the CSV, then something like FileHelpers to parse the file into a usable object. Then stuff into whatever you want.
得到答案了。
使用 System.Net.WebRequest 下载 CSV,然后使用以下链接中的答案对其进行解析。
如何解析 ASP.NET 网站中的 CSV 文件?
希望这对某人有帮助。
Got the answer.
Used System.Net.WebRequest to download the CSV and then parsed it using answer in below link.
How to parse a CSV file in an ASP.NET website?
Hope this helps someone.