在 C# 中从 url 读取 csv 文件的最佳方法是什么
我有一个网址,当我点击它时,Windows 询问我用什么打开它,它推荐 excel。
我现在想在 ac# 应用程序中动态读取此 csv 数据。将 csv 数据从 Http 请求获取到 url 的最佳方法是什么?
i have a url when i click on it i get windows asking me what to open it in and it recommends excel.
I now want to read this csv data dynamically in a c# application. what is the best way of getting csv data from Http Request to a url?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于 HTTP,请使用
WebClient
或WebRequest
/WebResponse
类。对于解析 CSV 文件本身,这些建议应该会有所帮助。
For HTTP, use either the
WebClient
orWebRequest
/WebResponse
classes.For parsing the CSV file itself, these suggestions should help.
获取数据后,您可以将其保存在本地驱动器上。从那里,您应该能够使用 .NET 中 OLEDB 的 Jet 提供程序来读取 CSV 文件。连接字符串将如下所示:
Once you get the data you can save it on the local drive. From there, you should be able to use the Jet provider for OLEDB in .NET to read the CSV file. The connection string will look something like this: