标签: c# .net html datatable
我一直在网上搜索没有答案 如何将由<table>,<th>,<tr>,<td>标记组成的.xls文件导入DataTable?
<table>,<th>,<tr>,<td>
答案 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应该让你开始。