将 xml 加载到 xdoc 中,然后初始化一个对象

发布于 2024-08-24 21:21:37 字数 594 浏览 5 评论 0原文

我的对象如下所示:

public class Template
{
     public string Title {get;set;}
     public string Body {get;set;}
}

xml 存储在 Web 应用程序的 /files/test.xml 中(位于根目录):

<nodes>
<template name="someKey">
  <node name="title">soem title</node>
  <node name="body">some body text here</node>
</template>
</nodes>

因此我可以像这样加载文档:

XDocument doc = XDocument.Load(HttpContext.Current.Server.MapPath("~/files/test.xml"));

现在我将如何从 xml 加载对象? (对于 name = somekey 的模板来说

My object looks like:

public class Template
{
     public string Title {get;set;}
     public string Body {get;set;}
}

xml that is stored in /files/test.xml in a web application (at the root):

<nodes>
<template name="someKey">
  <node name="title">soem title</node>
  <node name="body">some body text here</node>
</template>
</nodes>

So I can load the document like:

XDocument doc = XDocument.Load(HttpContext.Current.Server.MapPath("~/files/test.xml"));

Now how would I load the object from the xml? (say for the template with name = somekey

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

甜味超标? 2024-08-31 21:21:37
var templates = doc.Elements("template")
.FirstOrDefault(template=>template.Attribute("name").Value.Equals("someKey")
.Select(template=>new Template
{
    Title =  template.Elements("node").FirstOrDefault(node=>node.Attribute("name").Value.Equals("title")).Value,
    Body = template.Elements("node").FirstOrDefault(node=>node.Attribute("name").Value.Equals("body")).Value
 });
var templates = doc.Elements("template")
.FirstOrDefault(template=>template.Attribute("name").Value.Equals("someKey")
.Select(template=>new Template
{
    Title =  template.Elements("node").FirstOrDefault(node=>node.Attribute("name").Value.Equals("title")).Value,
    Body = template.Elements("node").FirstOrDefault(node=>node.Attribute("name").Value.Equals("body")).Value
 });
缪败 2024-08-31 21:21:37

您可以为您的 XML 构建一个 XSD(架构),并使用 XSD.exe 工具生成一个类,您的 XML 可以在该类中反序列化。

我不确定这是否是您想要的,但它绝对有效:)

You could build an XSD (Schema) for your XML and using the XSD.exe Tool you could generate the class in which your XML could be deserialized into it.

I'm not sure this is what you wanted but it definitly works :)

寻找我们的幸福 2024-08-31 21:21:37

如果您想从 XML 文件直接转到对象,您应该使用序列化(特别是使用XmlSerializer 类)。

这样,您就不需要创建从文件到对象的自定义解决方案。

查看 XmlSerializer msdn 页面,有很多关于其工作原理的好东西。

If you want to go from XML file directly to object, you should utilize serialization (specifically with the XmlSerializer class).

That way, you don't need to create you custom solution for going from file to object.

Take a look at the examples on the XmlSerializer msdn page, lots of good stuff on how this works.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文