将HTML格式导入Excel到DataTable

时间:2011-05-17 11:09:00

标签: c# .net html datatable

我一直在网上搜索没有答案 如何将由<table>,<th>,<tr>,<td>标记组成的.xls文件导入DataTable?

2 个答案:

答案 0 :(得分:1)

如果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;

答案 1 :(得分:-2)

我会使用PHP

This应该让你开始。