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

溫馨提示×

溫馨提示×

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

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

根據xsd序列化與反序列化xml

發布時間:2020-06-23 02:56:06 來源:網絡 閱讀:940 作者:zj6882917 欄目:編程語言
1,建立xsd
step1:建立“類型”Version、Updatetime,Files,File
step2:建立Files與File的多對一關系,添加Files中的file引用(是File類型的),修改file的屬性maxOccurs為unbounded,minOccurs為1
如圖:
根據xsd序列化與反序列化xml
step3:建立頂級元素“類型”Update,添加version,updatetime,files的引用,如圖
根據xsd序列化與反序列化xml
step4:添加頂級元素update(類型為Update),如圖
根據xsd序列化與反序列化xml

xsd代碼如下:
<?xml version="1.0" encoding="utf-8"?>
<xs:schema id="UpdateFile" targetNamespace="http://tempuri.org/UpdateFile.xsd" elementFormDefault="qualified" xmlns="http://tempuri.org/UpdateFile.xsd" xmlns:mstns="http://tempuri.org/UpdateFile.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:complexType name="Update">
        <xs:sequence>
            <xs:element name="version" type="Version" />
            <xs:element name="updatetime" type="Updatetime" />
            <xs:element name="files" type="Files" />
        </xs:sequence>
    </xs:complexType>
    <xs:complexType name="Version">
        <xs:sequence>
            <xs:element name="value" type="xs:string" />
            <xs:element name="type" type="xs:string" />
        </xs:sequence>
    </xs:complexType>
    <xs:complexType name="Updatetime">
        <xs:sequence>
            <xs:element name="value" type="xs:dateTime" />
        </xs:sequence>
    </xs:complexType>
    <xs:complexType name="Files">
        <xs:sequence>
            <xs:element name="file" type="File" maxOccurs="unbounded" minOccurs="1" />
        </xs:sequence>
    </xs:complexType>
    <xs:complexType name="File">
        <xs:sequence>
            <xs:element name="url" type="xs:string" />
        </xs:sequence>
    </xs:complexType>
    <xs:element name="update" type="Update">
    </xs:element>
</xs:schema>

2,生成實體類
用vs命令行在項目文件夾下輸入以下命令
xsd.exe 要生成實體類的.xsd /c /namespace:要生成的實體類的命名空間


3,兩個靜態工具類
根據xsd序列化與反序列化xmlclass Common
根據xsd序列化與反序列化xml        {
根據xsd序列化與反序列化xml                /// <summary>
根據xsd序列化與反序列化xml                /// 將XML文件寫入指定的對象
根據xsd序列化與反序列化xml                /// </summary>
根據xsd序列化與反序列化xml                /// <param name="xmlFile">xml絕對路徑</param>
根據xsd序列化與反序列化xml                /// <param name="type">序列的類型,要與XML對應的類</param>
根據xsd序列化與反序列化xml                /// <returns>將對象返回,當文件操作失敗則返回Null值</returns>
根據xsd序列化與反序列化xml                public static object DeserializeXmlToObject(string xmlFile, Type type)
根據xsd序列化與反序列化xml                {
根據xsd序列化與反序列化xml                        XmlSerializer mySerializer = new XmlSerializer(type);
根據xsd序列化與反序列化xml                        using (FileStream stream = new FileStream(xmlFile, FileMode.Open, FileAccess.Read, FileShare.ReadWrite))
根據xsd序列化與反序列化xml                        {
根據xsd序列化與反序列化xml                                return mySerializer.Deserialize(stream);
根據xsd序列化與反序列化xml                        }
根據xsd序列化與反序列化xml                }
根據xsd序列化與反序列化xml
                /// <summary>
根據xsd序列化與反序列化xml                ///    將對象寫入到XML中
根據xsd序列化與反序列化xml                /// </summary>
根據xsd序列化與反序列化xml                /// <param name="obj">數據源對象</param>
根據xsd序列化與反序列化xml                /// <param name="xmlFile">目標路徑</param>
根據xsd序列化與反序列化xml                /// <param name="type">轉換類型</param>
根據xsd序列化與反序列化xml                public static void SerializeObjectToXml(object obj, String xmlFile, Type type)
根據xsd序列化與反序列化xml                {
根據xsd序列化與反序列化xml                        XmlSerializer mySerializer = new XmlSerializer(type);
根據xsd序列化與反序列化xml                        using (FileStream stream = new FileStream(xmlFile, FileMode.Create, FileAccess.Write, FileShare.Read))
根據xsd序列化與反序列化xml                        {
根據xsd序列化與反序列化xml                                mySerializer.Serialize(stream, obj);
根據xsd序列化與反序列化xml                        }
根據xsd序列化與反序列化xml                }
根據xsd序列化與反序列化xml        }

4,序列化與反序列化
根據xsd序列化與反序列化xml//反序列化
根據xsd序列化與反序列化xml                                Update a = new Update();
根據xsd序列化與反序列化xml                                a.version = new Version();
根據xsd序列化與反序列化xml                                a.version.type = "0";
根據xsd序列化與反序列化xml                                a.version.value = "1.0.0.0";
根據xsd序列化與反序列化xml                                a.updatetime = new Updatetime();
根據xsd序列化與反序列化xml                                a.updatetime.value = new System.DateTime();
根據xsd序列化與反序列化xml                                a.files = new File[1];
根據xsd序列化與反序列化xml                                a.files[0] = new File();
根據xsd序列化與反序列化xml                                a.files[0].url = "http://test.exe";
根據xsd序列化與反序列化xml                                Common.SerializeObjectToXml(a, "目標.xml", typeof(Update));
根據xsd序列化與反序列化xml
                                //系列化
根據xsd序列化與反序列化xml                                Update u = (Update)Common.DeserializeXmlToObject("目標.xml", typeof(Update));

5,gameover
向AI問一下細節

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

AI

观塘区| 兰西县| 沙洋县| 安西县| 临夏市| 蒲江县| 蒙阴县| 永寿县| 颍上县| 松潘县| 延吉市| 陵川县| 星子县| 定西市| 莎车县| 厦门市| 黑水县| 左贡县| 汉中市| 塔河县| 辛集市| 滦南县| 南皮县| 天水市| 佳木斯市| 错那县| 屏山县| 修文县| 麻江县| 攀枝花市| 全南县| 娱乐| 绥阳县| 大田县| 民乐县| 安陆市| 博客| 湖口县| 凤山市| 潜山县| 雅江县|