我的xml如下:
<?xml version="1.0" encoding="UTF-8"?>
<root>
<data name="LogIn">Log In</data>
<data name="Password">Password</data>
</root>
如果没有Linq我成功了,任何人都可以帮我将以下代码转换为Linq:
using (XmlReader reader = XmlReader.Create(_xml))
{
while (reader.Read())
{
if (reader.NodeType == XmlNodeType.Element && reader.LocalName == "data")
{
reader.MoveToAttribute("name");
string key = reader.Value;
reader.MoveToContent();
string value = reader.ReadElementContentAsString();
_dictionary.Add(key, value);
}
}
reader.Close();
}
答案 0 :(得分:21)
var xdoc = XDocument.Load(path_to_xml);
_dictionary = xdoc.Descendants("data")
.ToDictionary(d => (string)d.Attribute("name"),
d => (string)d);
答案 1 :(得分:0)
XDocument xdoc = XDocument.Load("test.XML");
var query = xdoc.Descendants("root")
.Elements()
.ToDictionary(r => r.Attribute("name").Value,
r => r.Value);
请记住包括:
using System.Linq;
using System.Xml.Linq;
答案 2 :(得分:0)
这是一个老问题,但如果有人遇到'Typed'
xml(例如来自Android应用的SharedPreference
文件),您可以按照以下方式处理:以下是我从Instagram
应用程序中获取了这样一个xml。
<?xml version='1.0' encoding='utf-8' standalone='yes' ?>
<map>
<boolean name="pinnable_stickers" value="false" />
<string name="phone_number">+254711339900</string>
<int name="score" value="0" />
<string name="subscription_list">[]</string>
<long name="last_address_book_updated_timestamp" value="1499326818875" />
//...other properties
</map>
请注意value属性的不一致性。某些字段(例如类型string
)没有明确定义它。
var elements = XElement.Load(filePath)
.Elements()
.ToList();
var dict = new Dictionary<string, string>();
var _dict = elements.ToDictionary(key => key.Attribute("name").Value,
val => val.Attribute("value") != null ?
val.Attribute("value").Value : val.Value);