91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

驗證xml是否符合指定xsd

發布時間:2020-08-28 10:52:21 來源:網絡 閱讀:2459 作者:yuanzhitang 欄目:編程語言

xml是常用的一種數據文件格式,它的定義文件為Xml schema definition(XSD),那么怎么驗證一個xml是否符合它的schema定義呢?

本文給出C#的代碼實現。

樣例XML

存儲在xml.xml文件中

<?xml version="1.0" encoding="utf-8" ?>
<xml>
  <age>10</age>
  <date>2018-01-01</date>
  <regex>111</regex>
  <gMonth>---10--</gMonth>
  <language>english</language>
  <anyURI>./news.html</anyURI>
</xml>

樣例xsd

存儲在xsd.xsd文件中

<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">

  <xs:element name="xml">
    <xs:complexType>
      <xs:sequence>
        <xs:element name="age">
          <xs:simpleType>
            <xs:restriction base="xs:decimal">
              <xs:enumeration value="10"/>
              <xs:enumeration value="20"/>
              <xs:enumeration value="30"/>
            </xs:restriction>
          </xs:simpleType>
        </xs:element>
        <xs:element name="date">
          <xs:simpleType>
            <xs:restriction base="xs:date">
              <xs:enumeration value="2018-01-01Z"/>
            </xs:restriction>
          </xs:simpleType>
        </xs:element>
        <xs:element name="regex">
          <xs:simpleType>
            <xs:restriction base="xs:string">
              <xs:pattern value="[0-9][0-9][0-9]"/>
            </xs:restriction>
          </xs:simpleType>
        </xs:element>
        <xs:element name="gMonth" type="xs:gMonth"/>
        <xs:element name="language" type="xs:language"/>
        <xs:element name="anyURI" type="xs:anyURI"/>
      </xs:sequence>
    </xs:complexType>
  </xs:element>

</xs:schema>

完整代碼

下面代碼在Console Project中實現

class Program
    {
        static void Main(string[] args)
        {
            string xmlFile = "xml.xml";
            string xsdFile = "xsd.xsd";

            var exceptionMessage = string.Empty;
            VerifyXML(xsdFile, xmlFile, ref exceptionMessage);

            Console.WriteLine(exceptionMessage);
            Console.ReadKey();
        }

        private static void VerifyXML(string xsdFile, string xmlFile, ref string exceptionMessage)
        {
            XmlDocument doc = LoadXML(xmlFile);
            doc.Schemas = LoadXMLSchmeaFromXSDFile(xsdFile);

            string errorMessage = string.Empty;
            ValidationEventHandler eventHandler = new ValidationEventHandler(delegate (object sender, ValidationEventArgs e)
            {
                switch (e.Severity)
                {
                    case XmlSeverityType.Error:
                        errorMessage += e.Message;
                        break;
                    case XmlSeverityType.Warning:
                        break;
                }
            });

            doc.Validate(eventHandler);

            exceptionMessage = errorMessage;
        }

        private static XmlDocument LoadXML(string xmlFile)
        {
            XmlDocument doc = new XmlDocument();
            doc.Load(xmlFile);
            return doc;
        }

        private static XmlSchemaSet LoadXMLSchmeaFromXSDFile(string path)
        { 
            var schemas = new XmlSchemaSet();
            schemas.Add("", XmlReader.Create(path));
            return schemas;
        }
    }
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

全南县| 开封市| 泰和县| 芦山县| 安西县| 虞城县| 偃师市| 鹤壁市| 靖宇县| 普洱| 阿巴嘎旗| 陆良县| 密山市| 建宁县| 藁城市| 沂南县| 长子县| 荆门市| 苏尼特右旗| 岳阳县| 阿图什市| 定西市| 平顺县| 南丹县| 吉隆县| 故城县| 裕民县| 平昌县| 沙坪坝区| 琼结县| 姚安县| 房山区| 商都县| 临城县| 香河县| 灵武市| 云阳县| 孙吴县| 米泉市| 无棣县| 峨边|