12

我对解析 XML 文件没有经验,我正在将折线图数据保存到 xml 文件中,所以我做了一些研究。根据这篇文章,在所有读取 XML 文件的方法中,DataSet是最快的。我使用它是有道理的,DataSet因为可能有大量数据。这是我的图形文档的外观:

<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<BreezyCalc>
    <Graph Version="3.0" Mode="static">
        <Range>
            <X Min="-20" Max="20" />
            <Y Min="-20" Max="20" />
        </Range>
        <Lines>
            <Line Name="MyLine1" R="0" G="255" B="0">
                <Point X="-17" Y="9" />
                <Point X="7" Y="-5" />
                <Point X="10" Y="4" />
                <Point X="-6" Y="2" />
            </Line>
            <Line Name="MyLine2" R="255" G="0" B="0">
                <Point X="-7" Y="3" />
                <Point X="8" Y="-1" />
                <Point X="-4" Y="-4" />
                <Point X="-1" Y="6" />
            </Line>
        </Lines>
    </Graph>
</BreezyCalc>

由于这些线中可能存在大量点,因此我需要以尽可能少的资源尽快获取数据。如果有比 更快的方法DataSet,请赐教。否则,有人可以告诉我如何使用 aDataSet作为我的 XML 解析器来获取我的图形数据吗?

4

2 回答 2

21

如果要使用 DataSet,则非常简单。

// Here your xml file
string xmlFile = "Data.xml";

DataSet dataSet = new DataSet();
dataSet.ReadXml(xmlFile, XmlReadMode.InferSchema);

// Then display informations to test
foreach (DataTable table in dataSet.Tables)
{
    Console.WriteLine(table);
    for (int i = 0; i < table.Columns.Count; ++i)
        Console.Write("\t" + table.Columns[i].ColumnName.Substring(0, Math.Min(6, table.Columns[i].ColumnName.Length)));
    Console.WriteLine();
    foreach (var row in table.AsEnumerable())
    {
        for (int i = 0; i < table.Columns.Count; ++i)
        {
            Console.Write("\t" + row[i]);
        }
        Console.WriteLine();
    }
}

如果您想要更快的速度,您可以尝试使用 XmlReader 逐行读取。但是开发难度有点大。你可以在这里看到它:http: //msdn.microsoft.com/library/cc189056 (v=vs.95).aspx

于 2013-01-19T11:26:20.903 回答
6

其他简单的方法是使用“ReadXml”内置方法。

string filePath = "D:\\Self Practice\\Sol1\\Sol1\\Information.xml";
DataSet ds = new DataSet();
ds.ReadXml(filePath);

注意:XML 文件应该是有序的。

参考

于 2015-06-29T11:06:45.337 回答