如何在 C# 中将 XML 转换为数据表
本文关键字:转换 数据表 XML 中将 | 更新日期: 2023-09-27 17:56:00
我的客户给了我一个用ColdFusion编写的webservice
,我一直在尝试用C#使用它。我一直在尝试将 XML 转换为 DataTabl
e,但我得到一个没有行的DataTable
。
这是我的 XML:
<?xml version='1.0' standalone='yes'?>
<dtFirms>
<NR>2</NR>
<NAME>CS Net - 2014</NAME>
<NRTIT>2 - 2014 - CS Net - 2014</NRTIT>
<PERIOD>7</PERIOD>
</dtFirms>
这是我的 C# 代码。它始终返回空数据表。我做错了什么?
public DataTable ReadXmlIntoDataTable(string s) {
//create the DataTable that will hold the data
DataTable table = new DataTable("dtFirms");
try
{
//open the file using a Stream
using (Stream stream = GenerateStreamFromString(s))
{
//create the table with the appropriate column names
table.Columns.Add("NR", typeof(string));
table.Columns.Add("NAME", typeof(string));
table.Columns.Add("NRTIT", typeof(string));
table.Columns.Add("PERIOD", typeof(int));
//use ReadXml to read the XML stream
table.ReadXml(stream);
//return the results
return table;
}
}
catch (Exception ex)
{
return table;
}
}
public Stream GenerateStreamFromString(string s)
{
MemoryStream stream = new MemoryStream();
StreamWriter writer = new StreamWriter(stream);
writer.Write(s);
writer.Flush();
stream.Position = 0;
return stream;
}
它始终返回空数据表。我做错了什么?请帮助我。
-
您可以为 xml 文件创建架构。
-
通过使用 XSD.exe可以为架构生成类结构。使用这些 xml 架构类循环访问 xml 文件。
-
使用表。Rows.Add() 函数用于在数据表中添加条目。