我在内存中的string
中有一些XML,就像这样:
<symbols>
<symbol>EURCHF</symbol>
<symbol>EURGBP</symbol>
<symbol>EURJPY</symbol>
<symbol>EURUSD</symbol>
</symbols>
我想把它读成DataTable
。我是这样做的:
DataTable dt = new DataTable();
dt.TableName = "symbols";
dt.Columns.Add("symbol");
if (!String.IsNullOrEmpty(symbols))
{
dt.ReadXml(new StringReader(symbols));
}
但是当我检查行数时,DataTable
最终会有零行。我做错了什么?
答案 0 :(得分:15)
从这里开始:http://www.dreamincode.net/code/snippet3186.htm
// <summary>
/// method for reading an XML file into a DataTable
/// </summary>
/// <param name="file">name (and path) of the XML file</param>
/// <returns></returns>
public DataTable ReadXML(string file)
{
//create the DataTable that will hold the data
DataTable table = new DataTable("XmlData");
try
{
//open the file using a Stream
using(Stream stream = new FileStream(file, FileMode.Open, FileAccess.Read))
{
//create the table with the appropriate column names
table.Columns.Add("Name", typeof(string));
table.Columns.Add("Power", typeof(int));
table.Columns.Add("Location", typeof(string));
//use ReadXml to read the XML stream
table.ReadXml(stream);
//return the results
return table;
}
}
catch (Exception ex)
{
return table;
}
}
您可能需要查看DataTable.ReadXml方法。
编辑:如果你在内存中有xml对象,你可以直接使用ReadXml方法。 DataTable.ReadXml(MemoryStream Object);
编辑2:我做了导出。需要以下XML Schema:
<?xml version="1.0" standalone="yes"?>
<DocumentElement>
<symbols>
<symbol>EURCHF</symbol>
</symbols>
<symbols>
<symbol>EURGBP</symbol>
</symbols>
<symbols>
<symbol>EURJPY</symbol>
</symbols>
</DocumentElement>
答案 1 :(得分:2)
像这样:
Dim strXmlString As String = "<tables><row><table_name>Table1</table_name><record_key>1</record_key></row>"
strXmlString += "<row><table_name>Table2</table_name><record_key>2</record_key></row></tables>"
Dim srXMLtext As System.IO.StringReader = New System.IO.StringReader(strXmlString)
Dim dt As New DataTable
dt.ReadXml(srXMLtext)
答案 2 :(得分:1)
另一种方式:
public DataTable ReadXML(string yourPath)
{
DataTable table = new DataTable("Item");
try
{
DataSet lstNode = new DataSet();
lstNode.ReadXml(yourPath);
table = lstNode.Tables["Item"];
return table;
}
catch (Exception ex)
{
return table;
}
}
&#13;
以下是XML格式:
<?xml version="1.0" encoding="utf-8" ?>
<db>
<Item>
<Id>222</Id>
<OldCode>ZA</OldCode>
<NewCode>ZAF</NewCode>
<Name>Africa (South )</Name>
</Item>
</db>
&#13;
答案 3 :(得分:0)
这是Powershell中的示例代码:
$xmlString = @"
<table1>
<row1>
<c1>value1</c1><c2>value2</c2>
</row1>
<row2>
<c1>value3</c1><c2>value4</c2>
</row2>
</table1>
"@
$sr =[System.IO.StringReader]($xmlString)
$dataset =[System.Data.DataSet]::new()
$null = $dataset.ReadXml($sr)
这是$ dataset.tables的结果:
c1 c2
-- --
value1 value2
value3 value4
答案 4 :(得分:0)
public DataTable XMLToDataTable(string YourFilePath)
{
DataTable table = new DataTable("XMLTABLE");
try
{
#region "'< <> >& NOT VALID EXTENSTION IN XML
var xmlContent = File.ReadAllText(YourFilePath);
XmlDocument xDoc = new XmlDocument();
xDoc.LoadXml(xmlContent.Replace("'", "'").Replace("&", "&"));
xDoc.Save(YourFilePath);
#endregion
//All XML Document Content
//XmlElement root = xDoc.DocumentElement;
string RootNode = xDoc.DocumentElement.Name;
string RootChildNode = xDoc.DocumentElement.LastChild.Name;
DataSet lstNode = new DataSet();
lstNode.ReadXml(YourFilePath);
table = lstNode.Tables[RootChildNode];
return table;
}
catch (Exception ex)
{
}
}
答案 5 :(得分:0)
一段时间以来,我一直在寻找一种简单的方法来做同样的事情,但从未真正找到我真正想要的。这是我遇到的一种解决方案。它可以工作,但是我不太喜欢它,因为我必须用DataSet
读取文件,然后将DataSet
中的创建表放入DataTable
中。
无论如何,这是代码:
DataSet ds = new DataSet();
ds.ReadXml(path);
DataTable newDataTable = ds.Tables[0];
我也为.ReadXml
尝试了DataTable
,但是它总是抛出异常。
我对这种解决方案不满意,但至少可以奏效。
答案 6 :(得分:-2)
使用数据集代替数据表