在 C# 中从 url 读取 csv 文件的最佳方法是什么

发布于 2024-09-06 23:20:46 字数 120 浏览 3 评论 0原文

我有一个网址,当我点击它时,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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

述情 2024-09-13 23:20:46

对于 HTTP,请使用 WebClientWebRequest/WebResponse 类。

对于解析 CSV 文件本身,这些建议应该会有所帮助

For HTTP, use either the WebClient or WebRequest/WebResponse classes.

For parsing the CSV file itself, these suggestions should help.

暖阳 2024-09-13 23:20:46

获取数据后,您可以将其保存在本地驱动器上。从那里,您应该能够使用 .NET 中 OLEDB 的 Jet 提供程序来读取 CSV 文件。连接字符串将如下所示:

Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:\txtFilesFolder\;Extended
Properties=""text;HDR=Yes;FMT=Delimited"""

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:

Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:\txtFilesFolder\;Extended
Properties=""text;HDR=Yes;FMT=Delimited"""
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文