1

我想使用 JsonFx 将 XML 转换为自定义类型和 LINQ 查询。任何人都可以提供一个反序列化和序列化的例子吗?

这是我正在使用的 XML 示例。XML 粘贴在这里: http: //pastebin.com/wURiaJM2

JsonFx 支持多种将 json 绑定到 .net 对象(包括动态对象)的策略。https://github.com/jsonfx/jsonfx

亲切的问候

PS 我确实尝试将 xml 文档粘贴到 StackOverflow 中,但它删除了很多文档引号和 XML 声明。

4

2 回答 2

1

这是我使用过的一种方法。它可能需要一些调整:

    public static string SerializeObject<T>(T item, string rootName, Encoding encoding)
    {

        XmlWriterSettings writerSettings = new XmlWriterSettings();
        writerSettings.OmitXmlDeclaration = true;
        writerSettings.Indent = true;
        writerSettings.NewLineHandling = NewLineHandling.Entitize;
        writerSettings.IndentChars = "    ";
        writerSettings.Encoding = encoding;

        StringWriter stringWriter = new StringWriter();

        using (XmlWriter xml = XmlWriter.Create(stringWriter, writerSettings))
        {

            XmlAttributeOverrides aor = null;

            if (rootName != null)
            {
                XmlAttributes att = new XmlAttributes();
                att.XmlRoot = new XmlRootAttribute(rootName);

                aor = new XmlAttributeOverrides();
                aor.Add(typeof(T), att);
            }

            XmlSerializer xs = new XmlSerializer(typeof(T), aor);

            XmlSerializerNamespaces xNs = new XmlSerializerNamespaces();
            xNs.Add("", "");

            xs.Serialize(xml, item, xNs);
        }

        return stringWriter.ToString();
    }

对于反序列化:

    public static T DeserializeObject<T>(string xml)
    {
        using (StringReader rdr = new StringReader(xml))
        {
            return (T)new XmlSerializer(typeof(T)).Deserialize(rdr);
        }
    }

并这样称呼它:

string xmlString =  Serialization.SerializeObject(instance, "Root", Encoding.UTF8);

ObjectType obj = Serialization.DeserializeObject<ObjectType>(xmlString);

希望这可以帮助。Serialize 方法中的 rootName 参数允许您在生成的 xml 字符串中自定义根节点的值。此外,您的类必须使用适当的 Xml 属性进行修饰,这些属性将控制实体的序列化方式。

于 2011-08-17T21:45:08.420 回答
0

这篇文章解释了如何从 XML 文件创建 XSD 和类,然后介绍序列化和反序列化。 http://geekswithblogs.net/CWeeks/archive/2008/03/11/120465.aspx

将这种技术与 XSD.exe 一起使用来创建 XSD,然后在 CS 文件中创建类,我能够序列化,然后再次反序列化。

然而,序列化过程并没有创建源 XML 的精确表示,因此仍有一些后期工作需要完成。

于 2011-08-19T07:03:50.477 回答