青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

C++ Programmer's Cookbook

{C++ 基礎} {C++ 高級} {C#界面,C++核心算法} {設計模式} {C#基礎}

Use XML Serialization with Custom Objects/Create a Schema for a .NET Class/Generate a Class from a Schema(XML 四)

Solution

Use the System.Xml.Serialization.XmlSerializer class to transfer data from your object to XML, and vice versa. You can also mark up your class code with attributes to customize its XML representation.

The only requirements for using XmlSerializer are as follows:

  • The XmlSerializer only serializes properties and public variables.

  • The classes you want to serialize must include a default zero-argument constructor. The XmlSerializer uses this constructor when creating the new object during deserialization.

  • All class properties must be readable and writable. This is because XmlSerializer uses the property get accessor to retrieve information, and the property set accessor to restore the data after deserialization.

To use XML serialization, you must first mark up your data objects with attributes that indicate the desired XML mapping. These attributes are found in the System.Xml.Serialization namespace and include the following:

  • XmlRoot Specifies the name of the root element of the XML file. By default, XmlSerializer will use the name of the class. This attribute can be applied to the class declaration.

  • XmlElement Indicates the element name to use for a property or public variable. By default, XmlSerializer will use the name of the property or public variable.

  • XmlAttribute Indicates that a property or public variable should be serialized as an attribute, not an element, and specifies the attribute name.

  • XmlEnum Configures the text that should be used when serializing enumerated values. If you don't use XmlEnum, the name of the enumerated constant will be used.

  • XmlIgnore Indicates that a property or public variable should not be serialized.

For example, consider the product catalog first shown in recipe 5.1. You can represent this XML document using ProductCatalog and Product objects. Here's the class code that you might use:

using System;
using System.Xml.Serialization;

[XmlRoot("productCatalog")]
public class ProductCatalog {

    [XmlElement("catalogName")]
    public string CatalogName;
    
    // Use the date data type (and ignore the time portion in the 
    // serialized XML).
    [XmlElement(ElementName="expiryDate", DataType="date")]
    public DateTime ExpiryDate;
    
    // Configure the name of the tag that holds all products,
    // and the name of the product tag itself.
    [XmlArray("products")]
    [XmlArrayItem("product")]
    public Product[] Products;

    public ProductCatalog() {
        // Default constructor for deserialization.
    }

    public ProductCatalog(string catalogName, DateTime expiryDate) {
        this.CatalogName = catalogName;
        this.ExpiryDate = expiryDate;
    }
}

public class Product {

    [XmlElement("productName")]
    public string ProductName;
    
    [XmlElement("productPrice")]
    public decimal ProductPrice;
    
    [XmlElement("inStock")]
    public bool InStock;
    
    [XmlAttributeAttribute(AttributeName="id", DataType="integer")]
    public string Id;

    public Product() {
        // Default constructor for serialization.
    }

    public Product(string productName, decimal productPrice) {
        this.ProductName = productName;
        this.ProductPrice = productPrice;
    }
}

Notice that these classes use the XML serialization attributes to rename element names (using Pascal casing in the class member names, and camel casing in the XML tag names), indicate data types that aren't obvious, and specify how <product> elements will be nested in the <productCatalog>.

Using these custom classes and the XmlSerializer object, you can translate XML into objects and vice versa. Here's the code you would need to create a new ProductCatalog object, serialize the results to an XML document, deserialize the document back to an object, and then display the XML document.

using System;
using System.Xml;
using System.Xml.Serialization;
using System.IO;

public class SerializeXml {

    private static void Main() {

        // Create the product catalog.
        ProductCatalog catalog = new ProductCatalog("New Catalog",
          DateTime.Now.AddYears(1));
        Product[] products = new Product[2];
        products[0] = new Product("Product 1", 42.99m);
        products[1] = new Product("Product 2", 202.99m);
        catalog.Products = products;

        // Serialize the order to a file.
        XmlSerializer serializer = new XmlSerializer(typeof(ProductCatalog));
        FileStream fs = new FileStream("ProductCatalog.xml", FileMode.Create);
        serializer.Serialize(fs, catalog);
        fs.Close();

        catalog = null;

        // Deserialize the order from the file.
        fs = new FileStream("ProductCatalog.xml", FileMode.Open);
        catalog = (ProductCatalog)serializer.Deserialize(fs);

        // Serialize the order to the Console window.
        serializer.Serialize(Console.Out, catalog);
        Console.ReadLine();
    }
}
----------------------------------------------------

Solution

Use the XML Schema Definition Tool (xsd.exe) command-line utility included with the .NET Framework.
Specify the name of your assembly as a command- line argument, and add the /t:[TypeName]
parameter to indicate the types you want to convert.

The xsd.exe utility is included with the .NET Framework. If you've installed Microsoft Visual Studio .NET,
you'll find it in a directory like C:\Program Files\Microsoft Visual Studio .NET\FrameworkSDK\Bin.
The xsd.exe utility can generate schema documents from compiled assemblies. You simply need to supply the
filename and indicate the class that represents the XML document with the /t:[TypeName] parameter.

For example, consider the ProductCatalog and Product classes shown in recipe 5.9.(即XML 三) You could create the
XML schema for a product catalog with the following command line:


xsd Recipe5-09.exe /t:ProductCatalog

You need to specify only the ProductCatalog class on the command line because this class represents the actual
XML document. The generated schema in this example will represent a complete product catalog,
with contained product items. It will be given the default filename schema0.xsd.

--------------------------------------------------------------

Solution

Use the xsd.exe command-line utility included with the .NET Framework. Specify the name of your schema file
as a command-line argument, and add the /c parameter to indicate that you want to generate class code.


To generate source code from a schema, you simply need to supply the filename of the schema document
and add the /c parameter to indicate that you want to generate the required classes. For example,
consider the schema shown in recipe 5.8. (上面所產生的xsd)You can generate C# code for this schema with the following command-line:

xsd ProductCatalog.xsd /c

This will generate one file (ProductCatalog.cs) with two classes: product and productCalalog. These classes
are similar to the ones created in recipe 5.9,(上面所寫的constom object中) except for the fact that the class member names match the
XML document exactly.



posted on 2005-11-23 18:40 夢在天涯 閱讀(896) 評論(0)  編輯 收藏 引用 所屬分類: C#/.NET

公告

EMail:itech001#126.com

導航

統計

  • 隨筆 - 461
  • 文章 - 4
  • 評論 - 746
  • 引用 - 0

常用鏈接

隨筆分類

隨筆檔案

收藏夾

Blogs

c#(csharp)

C++(cpp)

Enlish

Forums(bbs)

My self

Often go

Useful Webs

Xml/Uml/html

搜索

  •  

積分與排名

  • 積分 - 1811733
  • 排名 - 5

最新評論

閱讀排行榜

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
      <noscript id="pjuwb"></noscript>
            <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
              <dd id="pjuwb"></dd>
              <abbr id="pjuwb"></abbr>
              亚洲制服少妇| 国外成人在线| 亚洲无线一线二线三线区别av| 欧美国产精品专区| 久久久免费精品| 91久久久精品| 亚洲精品视频免费| 国产精品毛片a∨一区二区三区| 午夜精品在线看| 欧美在线视频观看免费网站| 韩国av一区二区三区| 农夫在线精品视频免费观看| 欧美精品999| 欧美伊人久久大香线蕉综合69| 久久精品亚洲一区| 在线视频欧美精品| 久久激情久久| 亚洲香蕉伊综合在人在线视看| 国产精品99久久久久久有的能看| 国产一区二区av| 亚洲三级电影全部在线观看高清| 欧美日韩一区二区三区在线看| 久久激情视频| 欧美日韩dvd在线观看| 久久电影一区| 欧美日韩国产综合视频在线观看| 欧美一区二区私人影院日本| 免费观看成人| 久久国产婷婷国产香蕉| 欧美另类videos死尸| 久久狠狠久久综合桃花| 欧美日韩国产欧美日美国产精品| 久久精品国产99国产精品澳门| 欧美成人精品h版在线观看| 欧美一级免费视频| 欧美日产国产成人免费图片| 久久三级视频| 国产日韩欧美综合一区| 亚洲免费黄色| 亚洲精品久久久久久久久久久| 亚洲欧美影院| 亚洲欧美综合| 国产精品qvod| 亚洲精品一二三区| 亚洲国语精品自产拍在线观看| 亚洲男人第一网站| 亚洲综合99| 欧美日韩视频在线| 亚洲国产一区视频| 亚洲第一黄网| 久久久久国产精品午夜一区| 欧美亚洲一区三区| 国产精品乱子乱xxxx| 99re66热这里只有精品3直播| 亚洲国产精品一区| 久久影院亚洲| 欧美电影免费观看高清完整版| 国产性色一区二区| 欧美一区二区免费| 久久精品国产2020观看福利| 国产精品综合久久久| 亚洲一区二区三区三| 亚洲尤物在线视频观看| 欧美天天综合网| 一区二区欧美日韩| 亚洲欧美久久| 国产日韩专区在线| 午夜一区二区三区不卡视频| 久久国产综合精品| 伊人男人综合视频网| 在线一区免费观看| 欧美日韩在线视频首页| 一本色道久久综合一区 | 久久久久久电影| 久久免费的精品国产v∧| 含羞草久久爱69一区| 久久男人资源视频| 91久久国产精品91久久性色| 99精品国产福利在线观看免费 | 国产欧美欧美| 久久综合九色九九| 亚洲黄色成人| 亚洲自拍三区| 激情综合色综合久久| 麻豆精品一区二区av白丝在线| 亚洲承认在线| 亚洲在线一区| 在线精品视频免费观看| 欧美精品在线一区| 亚洲欧美在线视频观看| 欧美成人dvd在线视频| 在线一区日本视频| 黄色av一区| 欧美日韩久久| 久久av红桃一区二区小说| 亚洲国产国产亚洲一二三| 亚洲在线免费观看| 亚洲高清视频一区二区| 欧美午夜精品久久久久久浪潮| 欧美在线日韩在线| 亚洲毛片在线观看.| 久久露脸国产精品| 亚洲一区二区成人在线观看| 国内精品久久久久影院色| 欧美区在线播放| 久久亚洲视频| 欧美一区二区| 99国产精品99久久久久久粉嫩| 久久综合五月天婷婷伊人| 亚洲先锋成人| 亚洲区在线播放| 激情丁香综合| 国产精品你懂的| 欧美精品一区二区三区很污很色的| 性欧美videos另类喷潮| 日韩亚洲国产欧美| 亚洲第一视频| 老鸭窝毛片一区二区三区| 亚洲欧美日韩国产综合| 亚洲久色影视| 亚洲国产成人av| 黄色另类av| 国产一区二区三区高清在线观看| 欧美三区免费完整视频在线观看| 久久精品免视看| 午夜国产不卡在线观看视频| 日韩视频在线你懂得| 亚洲高清视频的网址| 国产精品观看| 欧美日韩精品一区二区天天拍小说| 久久在线视频在线| 久久亚洲春色中文字幕久久久| 先锋影音久久| 欧美亚洲视频在线看网址| 这里只有精品电影| 中文国产一区| 亚洲一区二区精品| 中文欧美在线视频| 亚洲视频欧洲视频| 亚洲一区二区三区午夜| 亚洲午夜av电影| 亚洲一区中文| 欧美亚洲综合网| 欧美中文字幕在线播放| 久久成人国产| 老**午夜毛片一区二区三区| 久久一区二区三区四区| 免费观看不卡av| 欧美日韩国产综合网| 欧美三日本三级少妇三99| 欧美偷拍另类| 国产午夜精品理论片a级探花 | 欧美xart系列高清| 欧美大片免费看| 欧美丝袜一区二区| 国产欧美不卡| 尤物在线观看一区| 99re热这里只有精品视频| 一本色道婷婷久久欧美| 亚洲在线免费| 裸体一区二区| 亚洲理伦在线| 欧美伊人精品成人久久综合97| 久久久999国产| 欧美精品国产精品| 国产精品欧美风情| 激情五月***国产精品| 日韩小视频在线观看专区| 亚洲一区二三| 久久人人看视频| 日韩视频免费观看| 欧美在线中文字幕| 欧美伦理在线观看| 国产午夜精品一区理论片飘花| 亚洲成色777777女色窝| 一区二区三区免费看| 久久久久国产精品人| 亚洲国产清纯| 欧美在线地址| 欧美日本一区二区高清播放视频| 国产嫩草一区二区三区在线观看 | 亚洲国产精品小视频| 亚洲欧美日韩国产一区二区| 久热精品视频在线| 在线一区二区三区做爰视频网站| 久久精品成人欧美大片古装| 欧美日韩免费看| 在线欧美日韩| 欧美在线亚洲在线| 亚洲欧洲另类| 久热精品视频在线免费观看| 国产精品国产三级国产aⅴ无密码 国产精品国产三级国产aⅴ入口 | 国产精品无人区| 日韩一级在线| 欧美成人午夜免费视在线看片| 国产一区二区三区久久| 亚洲午夜国产成人av电影男同| 免费在线欧美黄色| 欧美在线亚洲一区| 国产精品婷婷|