亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

驗證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

宁远县| 镇宁| 江北区| 渭源县| 海盐县| 内江市| 万州区| 德钦县| 营山县| 灵璧县| 南康市| 滦南县| 庆城县| 嫩江县| 包头市| 永德县| 乾安县| 新兴县| 漾濞| 精河县| 固阳县| 嵊州市| 闵行区| 开封县| 云梦县| 内江市| 上蔡县| 韶关市| 苏州市| 涟水县| 客服| 工布江达县| 石家庄市| 元江| 昭平县| 霞浦县| 达尔| 东阿县| 肃北| 黔南| 泗洪县|