5

我有这样的 XML

            <pda:Party>
                 ...Snip....
                <pda:CitizenName>
                    <pda:CitizenNameTitle>MR</pda:CitizenNameTitle>
                    <pda:CitizenNameForename>John</pda:CitizenNameForename>
                    <pda:CitizenNameSurname>Wayne</pda:CitizenNameSurname>
                </pda:CitizenName>
              .....Snip...
           </pda:Party>

其中 Citizen Name 是 Party Node 中的一个复杂类型。(这是从我正在为其创建适配器的第 3 方集成收到的 xml)

我对在我的课堂上尝试反序列化为我宁愿拥有的子类型不感兴趣。

public class Party
{
    public string  FirstName { get; set; }
    public string LastName {get;set;}

}

因此,与其将我的类定义作为 XML 所代表内容的具体定义,不如我可以使用 XPath 之类的东西来装饰属性,例如。

 [XmlElement("\CitizenName\CitizenNameForeName")]
 public string FirstName {get;set;}

要将 xml 中的信息挑选到包含我感兴趣的数据的类中?

从第 3 方收到的 xml 非常冗长,我只对特定方面感兴趣。一种选择是只创建一个 XMLDocument 并使用 XPath 和转换方法手动映射到我的类,但我想我会问是否有中间解决方案?

4

2 回答 2

0

一种选择是使用 XSLT 转换将传入的 XML 解析为与您的类匹配的 s 格式。

于 2013-01-02T14:29:54.567 回答
0

最后,我设置了自己的属性来做我想做的事情。因此,采用 XPath 路径的自定义属性...

[System.AttributeUsage(System.AttributeTargets.Property)]
public class PathToXmlNode : System.Attribute
{
    public string Path { get; set; }

    public PathToXmlNode(string path)
    {
        this.Path = path;
    }
}

后跟一个装饰属性..(为简单起见省略了命名空间)

         [PathToXmlNode("Party[1]/CitizenName/CitizenNameForename")]
         public string FirstName { get; set; }

然后,当我想填充类时,我调用了以下方法。

        var type = typeof(T);
        foreach (var property in type.GetProperties())
        {
            var attributes = property.GetCustomAttributes(typeof(PathToXmlNode), true);

            if (attributes != null && attributes.Length > 0)
            {
                //this property has this attribute assigned.
                //get the value to assign
                var xmlAttribute = (PathToXmlNode)attributes[0];
                var node = doc.SelectSingleNode(xmlAttribute.Path, nmgr);


                if (node != null && !string.IsNullOrWhiteSpace(node.InnerText))
                {
                    dynamic castedValue;

                    if (property.PropertyType == typeof(bool))
                    {
                        castedValue = Convert.ToBoolean(node.InnerText);
                    }
                    ...Snip all the casts....
                    else
                    {
                        castedValue = node.InnerText;
                    }


                    //we now have the node and it's value, now set it to the property.
                    property.SetValue(obj, castedValue, System.Reflection.BindingFlags.SetProperty, null, null, System.Globalization.CultureInfo.CurrentCulture);
                }

            }
        }

这是一个很好的起点,但是如果其他人认为这是一个可行的中间解决方案,您需要注意它需要适应非简单数据类型。这就是我现在要做的!

于 2013-01-03T08:45:33.160 回答