XML文档,读取属性
本文关键字:属性 读取 文档 XML | 更新日期: 2023-09-27 18:17:33
我想在XDocument的帮助下阅读XML文档。我已经在网上搜索了正确的解决方案。我找到了这个例子,但是没有像它应该的那样工作。
我的XML:
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<blabla>
<Infos>
<ConfigurationName>XXConfigurationName</ConfigurationName>
<DateSaved>14.10.2015 10:41:54</DateSaved>
</Infos>
<Configuration>
<DayRoutine>
<DayRoutine ID="4">
<Button>1</Button>
<DayRoutinePoints>
<Point0>00:00:00, 243</Point0>
<Point1>00:00:00, 243</Point1>
<Point2>00:00:00, 243</Point2>
<Point3>00:00:00, 243</Point3>
</DayRoutinePoints>
</DayRoutine>
<DayRoutine ID="3">
<Button>5</Button>
<DayRoutinePoints>
<Point0>00:00:00, 243</Point0>
<Point1>00:00:00, 243</Point1>
<Point2>00:00:00, 243</Point2>
<Point3>00:00:00, 243</Point3>
</DayRoutinePoints>
</DayRoutine>
</DayRoutine>
</Configuration>
</blabla>
和我的c#代码-更新:
XDocument doci = XDocument.Load(path);
var mijav = from r in doci.Descendants("Configuration").Descendants("DayRoutine").Descendants("DayRoutine").Where(r => (int)r.Attribute("ID") == 4)
select new
{
Button = r.Element("Button").Value,
DataPoints = r.Elements("DayRoutinePoints").Select(c => (string)c.Value).ToList(),
};
我当前的c#代码没有给我任何东西。我喜欢从DayRoutine ID="3"中读取数据。怎么做呢?因为我试图擦除"Where(r => (int)r. attribute("ID")==3)",我从第一个"DayRoutine"中得到结果。但是我喜欢"第二个"DayRoutine的数据。
后来我喜欢读点。但是因为不是每次都有相同数量的点,如何用一些循环来读取这些点呢?
感谢您的帮助,有任何问题请随时咨询
我现在怎么读点?取值范围从0到60。
这种基本方法给出的点为XElement
s。
...
new
{
...
//DataPoints = r.Descendants("DayRoutinePoints").Descendants("Point1"),
DataPoints = r.Elements("DayRoutinePoints").ToList(),
}
在tollist前添加一个.Select(xe => ...)
以转换为您自己的类