将 HTML 格式的 Excel 导入到 DataTable

发布于 2024-11-07 21:49:21 字数 135 浏览 0 评论 0原文

我一直在网上搜索没有答案 如何将由 、、

标签组成的 .xls 文件导入到 DataTable?

I've been searching in the net with no answers
How do you import a .xls file that is made of <table>,<th>,<tr>,<td> tags to DataTable?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

哥,最终变帅啦 2024-11-14 21:49:21

如果 HTML 格式正确,您可以尝试将其加载为 XML。用一个非常简单的例子来扩展一下:

        System.Xml.Linq.XDocument html = System.Xml.Linq.XDocument.Load (@"[xls doc]");
        //this will pull all the Table Headers. 
        var q = from th in html.Descendants ("th") select (string)th.Value;

if the HTML is well formed you can try to load it as XML. Expanding a bit with a very simple example:

        System.Xml.Linq.XDocument html = System.Xml.Linq.XDocument.Load (@"[xls doc]");
        //this will pull all the Table Headers. 
        var q = from th in html.Descendants ("th") select (string)th.Value;
听不够的曲调 2024-11-14 21:49:21

我会使用 PHP

应该可以帮助您入门。

I would use PHP

This should get you started.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文