C# 使用 Linq 为目录中的每个 XML 文件提取单个 XML 属性
如何使用 Linq 从目录中的每个 XML 文件中提取单个 XML 属性,并将该元素放入 C# 列表中。我必须逐个循环遍历每个文件吗? XML 文件非常大,因此我想在不将整个文件加载到内存中的情况下执行此操作。
谢谢, j
How do I use Linq to extract a single XML attribute form each XML file in a directory and put that element in a C# list. Do I have to loop thru each file one-by-one? The XML files are quite large so I'd like to do this without loading the entire file into memory.
Thanks,
j
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
除非文件很大(100 MB 以上),否则我无法拒绝这段代码的优雅:
我真的希望您的 XML 文件没有那么大...
Unless the files are massive (100 MB+) I would be unable to turn down the elegance of this code:
I really hope your XML files are not that big though...
您确实必须遍历每个文件,这意味着至少要解析每个文件的足够 XML 内容才能获取所需的属性。
XDocument
(即 LINQ to SQL)将在每种情况下解析并加载完整文档,因此您最好直接使用XmlReader
实例。这将需要更多的工作:您必须读取 XML 节点,直到找到正确的节点,并跟踪您所在的位置。You do have to go through every file, and this will mean at least parsing enough of the XML content of each file to get to the required attribute.
XDocument
(i.e. LINQ to SQL) will parse and load the complete document in each case, so you might be better using anXmlReader
instance directly. This will require more work: you will have to read the XML nodes until you get to the right one, keeping track of where you are.