Linq to xml:无法加载所有元素
我正在尝试从 xml 文件加载一些元素。 但在这种情况下,XDocument.Load 似乎没有正确处理 xml 文件,该方法将 xml 文件的内容作为一个节点返回。
这是我的 xml 内容:
<processes>
<process>winamp</process>
<process>Acrobat</process>
<process>WinRAR</process>
</processes>
以及读取该文件的代码:
XDocument loaded = XDocument.Load("/process_list.xml");
var x = from a in loaded.Descendants("processes")
select a.Element("process");
foreach (var t in x)
{
Console.WritleLine(t.Value.ToString());
}
谢谢
i'm trying to load some elements from a xml file.
but it XDocument.Load seems not treating xml file properly in this case, the method returns the content of the xml file as one node.
here is my xml content:
<processes>
<process>winamp</process>
<process>Acrobat</process>
<process>WinRAR</process>
</processes>
and the code that reads the file:
XDocument loaded = XDocument.Load("/process_list.xml");
var x = from a in loaded.Descendants("processes")
select a.Element("process");
foreach (var t in x)
{
Console.WritleLine(t.Value.ToString());
}
thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的代码从文档中的每个
processes
元素中选择第一个process
元素——文档中只有一个。要选择文档中的所有
process
元素,请尝试以下操作:Your code selects the first
process
element from eachprocesses
element in the document -- of which there is only one.To select all
process
elements in the document, try this: