如何使用 Windows 服务解析 CSV 文件?
如何使用 Windows 服务解析 CSV 文件?
对任何文章或教程的引用将不胜感激。
How to parse a CSV file using Windows Service?
References to any articles or tutorials would be really appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需在 Windows 服务中使用 CSV 解析器即可。
BCL 中有一个内置的 - TextFiledParser< /a> 并且许多人喜欢使用第三方 FileHelpers 库。
Just use a CSV parser in your windows service.
There is a built in one in the BCL - the TextFiledParser and many people like using the third party FileHelpers library.
这个 Linq to CSV codeproject.com 代码对我来说效果很好。 http://www.codeproject.com/KB/linq/LINQtoCSV.aspx
This Linq to CSV codeproject.com code has worked well for me. http://www.codeproject.com/KB/linq/LINQtoCSV.aspx