【发布时间】:2015-03-30 19:48:26
【问题描述】:
我有一个如下所示的 xmfile 文件,我必须在其中获取所有节点值 CIName,Type,Status,FriendlyName,AccountNo 。我试图通过使用XDocument 来获得结果,但没有成功。
<?xml version="1.0" encoding="utf-8"?>
<RetrievedeviceListResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" schemaRevisionLevel="0" returnCode="0" status="SUCCESS" message="Success" schemaRevisionDate="2015-03-24">
<instance uniquequery="file.device,logical.name="mss-abb-aejaljabelalifz-ra"" query="" xmlns="http://schemas.hp.com/SM/7">
<file.device type="Structure">
<CIName type="String">mss-abb-aejaljabelalifz-ra</CIName>
<Type type="String">networkcomponents</Type>
<Status type="String">In use</Status>
<FriendlyName type="String">Jabel Ali Free Zone</FriendlyName>
<Company type="String">ABB - MWAN</Company>
</file.device>
<file.networkcomponents type="Structure">
<AccountNo type="String">1444016683</AccountNo>
</file.networkcomponents>
<attachments xsi:nil="true" />
</instance>
<instance uniquequery="file.device,logical.name="mss-abb-aldar-ra"" query="" xmlns="http://schemas.hp.com/SM/7">
<file.device type="Structure">
<CIName type="String">mss-abb-aldar-ra</CIName>
<Type type="String">networkcomponents</Type>
<Status type="String">In use</Status>
<FriendlyName type="String">Al Dar AUH Main</FriendlyName>
<Company type="String">ABB - MWAN</Company>
</file.device>
<file.networkcomponents type="Structure">
<AccountNo type="String">1222229614</AccountNo>
</file.networkcomponents>
<attachments xsi:nil="true" />
</instance>
<instance uniquequery="file.device,logical.name="mss-abb-aldar-rb"" query="" xmlns="http://schemas.hp.com/SM/7">
<file.device type="Structure">
<CIName type="String">mss-abb-aldar-rb</CIName>
<Type type="String">networkcomponents</Type>
<Status type="String">In use</Status>
<FriendlyName type="String">Al Dar-AUH-Backup</FriendlyName>
<Company type="String">ABB - MWAN</Company>
</file.device>
<file.networkcomponents type="Structure">
<AccountNo type="String">1222222368</AccountNo>
</file.networkcomponents>
<attachments xsi:nil="true" />
</instance>
</RetrievedeviceListResponse>
我使用了以下代码
XDocument xdoc = XDocument.Load(path);
var authors = xdoc.Descendants("RetrievedeviceListResponse");
foreach (var author in authors)
{
Console.WriteLine("{0}{1}",author.Name, author.Value);
}
【问题讨论】:
-
那么你的问题到底是什么。您提供的 XML 无效。它没有 RetrievedeviceListResponse 的结束标记。可以加载文件吗?或者您可能无法读取值?
-
你有没有研究过使用
foreach(XElement在线示例