Linq到XML数据结构
本文关键字:数据结构 XML Linq | 更新日期: 2023-09-27 17:50:45
这是我的XML:
<home>
<contents>
<row>
<content>
<idContent>1</idContent>
<title>title1</title>
</content>
<content>
<idContent>2</idContent>
<title>title2</title>
</content>
</row>
<row>
<content>
<idContent>3</idContent>
<title>title3</title>
</content>
<content>
<idContent>4</idContent>
<title>title4</title>
</content>
</row>
</contents>
我想把这个信息存储在一个对象列表中
List myList =…
内容可以是:
int idContent;
string title;
int row_number;
每个Content对象必须在XML中存储它所在的行。
做这件事的最好方法是什么?
假设row_number
只是一个与其在XML中出现的顺序相关的序列,那么您可以这样做:
var doc = XDocument.Parse(xml);
var contents = doc.Descendants("row")
.Select((e, index) => new {Row = e, RowIndex = index})
.SelectMany(x => x.Row.Elements("content").Select(e => new {Content = e, x.RowIndex}))
.Select(x => new Content
{
IdContent = (int)x.Content.Element("idContent"),
Title = (string)x.Content.Element("title"),
RowNumber = x.RowIndex + 1
}).ToList();
我在类似的情况下使用这种方法:
public static Object CreateObject(string XMLString, Object YourClassObject)
{
System.Xml.Serialization.XmlSerializer oXmlSerializer = new System.Xml.Serialization.XmlSerializer(YourClassObject.GetType());
//The StringReader will be the stream holder for the existing XML file
YourClassObject = oXmlSerializer.Deserialize(new System.IO.StringReader(XMLString));
//initially deserialized, the data is represented by an object without a defined type
return YourClassObject;
}
使用这个方法,您可以从XML字符串创建一个类对象。我没有在您的场景中测试它,但您可以在以下home
类的对象上使用它:
public class home
{
public List<row> contents;
}
public class row
{
public List<content> content;
}
public class content
{
public int idContent;
public string title;
}
用法:
home h = new home();
h = (home)CreateObject(xml, h);
请记住,变量和类的名称必须与XML节点的名称完全相同。
额外:
如果你想把一个类对象转换成XML字符串,使用这个方法:
string CreateXML(Object YourClassObject)
{
XmlDocument xmlDoc = new XmlDocument(); //Represents an XML document,
// Initializes a new instance of the XmlDocument class.
XmlSerializer xmlSerializer = new XmlSerializer(YourClassObject.GetType());
// Creates a stream whose backing store is memory.
using (MemoryStream xmlStream = new MemoryStream())
{
xmlSerializer.Serialize(xmlStream, YourClassObject);
xmlStream.Position = 0;
//Loads the XML document from the specified string.
xmlDoc.Load(xmlStream);
return xmlDoc.InnerXml;
}
}
我能想到的最好的解决方案——尽管它不使用Linq to XML——是将您的XML文档提供给各种XML模式生成器之一,如http://www.freeformatter.com/xsd-generator.html,并将生成的模式直接输送到xsd.exe中(参见https://msdn.microsoft.com/en-us/library/x6c1kb0s.aspx)。生成的代码可用于读取(和写入)XML文档,例如您提供的文档,当然您可以在此集合上应用Linq to Objects。
但是,由于您提到的row_number字段尚未出现在示例XML中,因此您必须将其添加到XML中,或者之后手动编辑XML Schema。