我正在使用 XMLReader 读取一个巨大的 XML 文件(250 MB),并且只将特定元素添加到通用 List 。我无法正确地将值添加到列表中。我在列表中得到空值。感谢您的帮助下面是我正在使用的类:
public class SomeInfo
{
public string Item1 { get; set; }
public string Item2 { get; set; }
}
我读取 XML 的代码如下:
using (XmlReader reader = XmlReader.Create(file)
)
{
List<SomeInfo> test = new List<SomeInfo>();
while (reader.Read())
{
var testObject = new SomeInfo();
if (reader.NodeType == XmlNodeType.Element)
{
string name = reader.Name;
switch (name)
{
case "Item1":
reader.Read();
testObject.item1= reader.Value;
break;
case "Item2":
reader.Read();
testObject.item2= reader.Value;
break;
}
test.Add(testObject);
}
}
示例 XML:这是一个巨大的 xml 文件,我只需要读取一些元素并添加到列表中。在我上面的代码中,我只读取 Item1 和 Item2,而不关心 Xitem、Bitem 和 Citem 标签
<mainItem>
<Item>
<Xitem>125</Xitem>
<Item1>ab41gh80020gh140f6</Item1>
<BItem>42ae3de3</BItem>
<Item2>7549tt80384</Item2>
<Citem>c7dggf66e4</Citem>
</Item>
<Item>
<Xitem>865</Xitem>
<Item1>ab41gh80020gh140f6</Item1>
<BItem>42aejj3de3</BItem>
<Item2>7549kljj80384</Item2>
<Citem>c7df6kk6e4</Citem>
</Item>
<Item>
<Xitem>895</Xitem>
<Item1>ab41gjgjgh80020gh140f6</Item1>
<BItem>42aehkh3de3</BItem>
<Item2>754980384</Item2>
<Citem>c7dfjj66e4</Citem>
</Item>
</mainItem>