使用 C# 将 HTML 表格转换为 Excel 表格
我在 Microsoft.Office.Interop.Outlook.MailItem 正文中有 html 表,我只需要使用 C# 桌面应用程序用此表填充 Excel 工作表。任何人都可以在这方面帮助我吗?谢谢
I have html table in Microsoft.Office.Interop.Outlook.MailItem body and I just need to fill excel sheet with this table using C# for desktop application. Could any one help me in this regard. Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您还可以使用 HtmlAgilityPack 解析电子邮件并 EPPlus 写入 Excel(仅限 2007/2010 xlsx 版本)。
You can also use HtmlAgilityPack to parse the e-mail and EPPlus to write to Excel (only 2007/2010 xlsx version).
一种快速但肮脏的方法:
即使文件不包含有效的 xls 文档,Excel 也会打开它
A quick and dirty way:
Excel will open it even though the file does not contain a valid xls document