基于xsd模式生成xml(使用.NET)

时间:2014-05-22 13:36:22

标签: c# .net xml xsd xml-serialization

我想基于我的xsd架构(cap.xsd)生成一个xml文件。我找到了这篇文章,并按照说明操作: Generating XML file using XSD file

  • 我已经在xsd.exe的帮助下创建了这个类,并通过拖放到我的解决方案中插入它
  • 之后,我构建了我的解决方案并创建了xml。但它并不基于xsd架构。
  • xml文件有一个包含字符的元素,但架构说必须有数字(双)

  • 无论如何,我不知道xsd架构对生成的xml有什么影响?如果我删除了架构,则仍会创建xml文件。并且在此行创建了xml文件:

    var data = new Program                         {                             时间=" abc",                             来源=" 443543253243",                         };

..而不是我的架构:

出了什么问题?


我的班级:

namespace testapp
{
    using System.IO;
    using System.Xml.Serialization;

    public class Program
    {
        public string Time;
        public string Source;

        public static void Main()
        {
            var data = new Program
                {
                    Time = "abc",
                    Source = "buffalo",
                };

            var serializer = new XmlSerializer(typeof(Program));
            using (var stream = new StreamWriter("E:\\cap_test.xml"))
            {
                serializer.Serialize(stream, data);
            }
        }
    }
}

我的架构

<?xml version="1.0"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <xsd:element name="cap" type="capType"/>
    <xsd:complexType name="capType">
        <xsd:sequence>
            <xsd:element name="tel" type="telType" minOccurs="0" maxOccurs="unbounded"/>
        </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="telType">
        <xsd:sequence>
            <xsd:element name="time" type="xsd:double"/>
            <xsd:element name="source" type="xsd:string"/>
        </xsd:sequence>
    </xsd:complexType>
</xsd:schema>

和我的xml文件:

<?xml version="1.0" encoding="utf-8"?>
<Program xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <Time>abc</Time>
    <Source>buffalo</Source>
</Program>

1 个答案:

答案 0 :(得分:1)

您应该使用从xsd生成的类,而不是使用Program。我跑的时候

xsd /classes schema.xsd

它会创建一个schema.cs文件。当我在项目中包含它时,我可以编写这段代码:

class Program
{
    public static void Main()
    {
        var data = new capType { tel = new[] {
           new telType { source = "buffalo", time = 1 }
        } };

        var serializer = new XmlSerializer(typeof(capType));
        using (var stream = new StreamWriter(@"E:\cap_test.xml"))
        {
            serializer.Serialize(stream, data);
        }
    }
}

写道:

<?xml version="1.0" encoding="utf-8"?>
<cap xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <tel>
    <time>1</time>
    <source>buffalo</source>
  </tel>
</cap>

time double属性在schema.cs中属于{{1}}类型的事实意味着您只能输入有效数字。