我有XMLDocument
并且我使用xmlDocument.SelectSingleNode("./tag")
将我想要的以下xml标记提取到字符串中,并且我想将其加载到DataTable中。
我尝试使用dataTable.ReadXML();
,但此函数的重载不允许使用字符串参数。
有更好的方法吗?
编辑:添加代码
XmlDocument xdoc = new XmlDocument();
xdoc.LoadXml(string_With_Xml);
DataTable accessTable = new DataTable();
accessTable.ReadXml();
我希望这会为问题增加更多背景。
答案 0 :(得分:4)
您可以尝试以下操作:
//Your xml
string TestSTring = @"<Contacts>
<Node>
<ID>123</ID>
<Name>ABC</Name>
</Node>
<Node>
<ID>124</ID>
<Name>DEF</Name>
</Node>
</Contacts>";
StringReader StringStream = new StringReader(TestSTring);
DataSet ds = new DataSet();
ds.ReadXml(StringStream);
DataTable dt = ds.Tables[0];
答案 1 :(得分:0)
你可以写下这样的扩展名:
public static someType ReadXml(this DataTable dt, string yourParam1, string yourParam2)
{
method body....
}
答案 2 :(得分:0)
您可以使用以下方法,例如可以为字符串加载这里的字节数组:
Encoding.UTF8.GetBytes(somestring)
加载数据表的Helper方法,注意回退到DataSet的方法ReadXml而不是Datatable ReadXml。如果您的 xml 以某种方式包含多个数据表,这并不总是合适的,因为此方法总是返回捕获中的第一个数据表:
public DataTable Convert(byte[] bytes)
{
var text = bytes.ToStringUtf8();
if (string.IsNullOrWhiteSpace(text))
{
return null;
}
using (var stream = new MemoryStream(bytes))
{
try
{
var dt = new DataTable();
dt.ReadXml(stream);
return dt;
}
catch (InvalidOperationException ie)
{
Trace.WriteLine(ie);
var ds = new DataSet();
stream.Position = 0;
ds.ReadXml(stream);
if (ds.Tables.Count > 0)
{
return ds.Tables[0];
}
return null;
}
}
}