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

最佳答案

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

关于c# - 将HTML格式的Excel导入到DataTable,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6029932/

10-13 08:07