XSD与C#Code以及XML之间的相互关心
------------------------------网上参考资料
C# 利用自带xsd.exe工具操作XML-如通过XML生成xsd文件:http://blog.sina.com.cn/s/blog_7a8de3410100xlyl.html
xsd文件转换为实体类:http://code.3rbang.com/xsdtoclass/
如何动态根据一个业务实体类型创建XSD架构文件:http://developer.51cto.com/art/200908/143058.htm
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace DataEntities
- {
- public class Order
- {
- public int OrderID { get; set; }
- public string CustomerID { get; set; }
- public int EmployeeID { get; set; }
- public DateTime OrderDate { get; set; }
- public List<OrderItem> OrderItems { get; set; }
- public override string ToString()
- {
- StringBuilder sb = new StringBuilder();
- sb.AppendFormat("\t{0}\t{1}\t{2}\t{3}", OrderID, CustomerID, EmployeeID, OrderDate);
- sb.AppendLine();
- foreach (var item in OrderItems)
- {
- sb.AppendFormat("\t\t{0}\t{1}\t{2}\n", item.Product.ProductName, item.UnitPrice, item.Quantity);
- }
- return sb.ToString();
- }
- }
- public class OrderItem
- {
- public int OrderId { get; set; }
- public Product Product { get; set; }
- public decimal UnitPrice { get; set; }
- public decimal Quantity { get; set; }
- }
- public class Product
- {
- public int ProductId { get; set; }
- public string ProductName { get; set; }
- }
- }
创建XSD架构文件第二部分:生成XSD的工具类(Utility.cs)
- using System;
- using System.Xml.Linq;
- using System.Collections;
- using System.Xml;
- namespace XMLDatabase
- {
- public class Utility
- {
- /// <summary>
- /// 使用指定类型生成一个架构文件
- /// </summary>
- /// <typeparamname="T"></typeparam>
- public static void XsdGenerate<T>(XmlWriter xw) {
- Type t = typeof(T);
- XNamespace xn = "http://www.w3.org/2001/XMLSchema";
- XDocument doc = new XDocument(
- new XDeclaration("1.0", "utf-8", "yes"),
- new XElement(xn + "schema",
- new XAttribute("elementFormDefault", "qualified"),
- new XAttribute(XNamespace.Xmlns + "xs", "http://www.w3.org/2001/XMLSchema"),
- new XElement(xn+"element",
- new XAttribute("name","Table"),
- new XAttribute("nillable","true"),
- new XAttribute("type","Table"))
- ));
- XElement tableElement = new XElement(xn + "complexType",
- new XAttribute("name", "Table"));
- tableElement.Add(
- new XElement(xn + "sequence",
- new XElement(xn + "element",
- new XAttribute("minOccurs", "0"),
- new XAttribute("maxOccurs", "unbounded"),
- new XAttribute("name","Row"),
- new XAttribute("type",t.Name)
- )),
- new XElement(xn + "attribute",
- new XAttribute("name", "CreateTime"),
- new XAttribute("type", "xs:string"))
- );
- doc.Root.Add(tableElement);
- CreateComplexType(t, doc.Root);
- doc.Save(xw);
- }
- private static void CreateComplexType(Type t,XElement root) {
- XNamespace xn = root.GetNamespaceOfPrefix("xs");
- XElement temp = new XElement(
- xn + "complexType",
- new XAttribute("name", t.Name));
- #region 循环所有属性
- foreach (var p in t.GetProperties())//循环所有属性
- {
- Type ppType = p.PropertyType;
- string fullType = pType.FullName;
- //这里仍然是分几种情况
- if (!GeneralType.Contains(fullType))
- {
- var seqelement = temp.Element(xn + "sequence");
- if (seqelement == null)
- {
- seqelement = new XElement(xn + "sequence");
- temp.AddFirst(seqelement);
- }
- if (pType.IsEnum)//如果是枚举
- {
- seqelement.Add(
- new XElement(
- xn + "element",
- new XAttribute("minOccurs", "0"),
- new XAttribute("maxOccurs", "1"),
- new XAttribute("name", p.Name),
- new XAttribute("type", pType.Name)));
- XElement enumElement = new XElement(
- xn + "complexType",
- new XAttribute("name", pType.Name),
- new XElement(xn + "attribute",
- new XAttribute("name", "Enum"),
- new XAttribute("type", "xs:string")));
- root.Add(enumElement);
- }
- else if (pType.GetInterface(typeof(IList).FullName) != null && pType.IsGenericType)
- //如果是集合,并且是泛型集合
- {
- Type itemType = pType.GetGenericArguments()[0];
- seqelement.Add(
- new XElement(
- xn + "element",
- new XAttribute("minOccurs", "0"),
- new XAttribute("maxOccurs", "1"),
- new XAttribute("name", p.Name),
- new XAttribute("type", "ArrayOf"+p.Name)));
- XElement arrayElement = new XElement(
- xn + "complexType",
- new XAttribute("name", "ArrayOf" + p.Name),
- new XElement(xn + "sequence",
- new XElement(xn + "element",
- new XAttribute("minOccurs", "0"),
- new XAttribute("maxOccurs", "unbounded"),
- new XAttribute("name", itemType.Name),
- new XAttribute("type", itemType.Name))));
- root.Add(arrayElement);
- CreateComplexType(itemType, root);
- }
- else if (pType.IsClass || pType.IsValueType)
- {
- seqelement.Add(
- new XElement(
- xn + "element",
- new XAttribute("minOccurs", "0"),
- new XAttribute("maxOccurs", "1"),
- new XAttribute("name", p.Name),
- new XAttribute("type", pType.Name)));
- CreateComplexType(pType, root);
- }
- }
- else
- {
- //这种情况最简单,属性为标准内置类型,直接作为元素的Attribute即可
- temp.Add(
- new XElement(xn + "attribute",
- new XAttribute("name", p.Name),
- new XAttribute("type", GeneralType.ConvertXSDType(pType.FullName))));
- }
- }
- #endregion
- temp.Add(new XElement(xn + "attribute",
- new XAttribute("name", "TypeName"),
- new XAttribute("type", "xs:string")));
- root.Add(temp);
- }
- }
- }
创建XSD架构文件第三部分:辅助类型(GeneralType.cs).
这个类型中有一个方法可以将业务实体类型成员属性的类型转换为XSD中 的类型。
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace XMLDatabase
- {
- public class GeneralType
- {
- private static readonly List<string>generalTypes = new List<string>()
- {
- "System.Byte",//typeof(byte).FullName,
- "System.SByte",//typeof(sbyte).FullName,
- "System.Int16",//typeof(short).FullName,
- "System.UInt16",//typeof(ushort).FullName,
- "System.Int32",//typeof(int).FullName,
- "System.UInt32",//typeof(uint).FullName,
- "System.Int64",//typeof(long).FullName,
- "System.UInt64",//typeof(ulong).FullName,
- "System.Double",//typeof(double).FullName,
- "System.Decimal",//typeof(decimal).FullName,
- "System.Single",//typeof(float).FullName,
- "System.Char",//typeof(char).FullName,
- "System.Boolean",//typeof(bool).FullName,
- "System.String",//typeof(string).FullName,
- "System.DateTime"//typeof(DateTime).FullName
- };
- /// <summary>
- /// 判断当前给定类型是否为默认的数据类型
- /// </summary>
- /// <paramname="fullType"></param>
- /// <returns></returns>
- public static bool Contains(string fullType)
- {
- return generalTypes.Contains(fullType);
- }
- public static string ConvertXSDType(string fullType)
- {
- switch (fullType)
- {
- case "System.String":
- return "xs:string";
- case "System.Int32":
- return "xs:int";
- case "System.DateTime":
- return "xs:dateTime";
- case "System.Boolean":
- return "xs:boolean";
- case "System.Single":
- return "xs:float";
- case "System.Byte":
- return "xs:byte";
- case "System.SByte":
- return "xs:unsignedByte";
- case "System.Int16":
- return "xs:short";
- case "System.UInt16":
- return "xs:unsignedShort";
- case "System.UInt32":
- return "xs:unsignedInt";
- case "System.Int64":
- return "xs:long";
- case "System.UInt64":
- return "xs:unsignedLong";
- case "System.Double":
- return "xs:double";
- case "System.Decimal":
- return "xs:decimal";
- default:
- break;
- }
- return string.Empty;
- }
- }
- }
创建XSD架构文件第四部分:单元测试
- /// <summary>
- ///XsdGenerate 的测试
- ///</summary>
- public void XsdGenerateTestHelper<T>()
- {
- XmlWriter xw = XmlWriter.Create("Order.xsd"); // TODO: 初始化为适当的值
- Utility.XsdGenerate<Order>(xw);
- xw.Close();
- }
创建XSD架构文件第五部分: 生成的结果
- <?xmlversion="1.0"encoding="utf-8"standalone="yes"?>
- <xs:schemaelementFormDefault="qualified"xmlns:xs="http://www.w3.org/2001/XMLSchema">
- <xs:elementname="Table"nillable="true"type="Table"/>
- <xs:complexTypename="Table">
- <xs:sequence>
- <xs:elementminOccurs="0"maxOccurs="unbounded"name="Row"type="Order"/>
- </xs:sequence>
- <xs:attributename="CreateTime"type="xs:string"/>
- </xs:complexType>
- <xs:complexTypename="ArrayOfOrderItems">
- <xs:sequence>
- <xs:elementminOccurs="0"maxOccurs="unbounded"name="OrderItem"type="OrderItem"/>
- </xs:sequence>
- </xs:complexType>
- <xs:complexTypename="Product">
- <xs:attributename="ProductId"type="xs:int"/>
- <xs:attributename="ProductName"type="xs:string"/>
- <xs:attributename="TypeName"type="xs:string"/>
- </xs:complexType>
- <xs:complexTypename="OrderItem">
- <xs:sequence>
- <xs:elementminOccurs="0"maxOccurs="1"name="Product"type="Product"/>
- </xs:sequence>
- <xs:attributename="OrderId"type="xs:int"/>
- <xs:attributename="UnitPrice"type="xs:decimal"/>
- <xs:attributename="Quantity"type="xs:decimal"/>
- <xs:attributename="TypeName"type="xs:string"/>
- </xs:complexType>
- <xs:complexTypename="Order">
- <xs:sequence>
- <xs:elementminOccurs="0"maxOccurs="1"name="OrderItems"type="ArrayOfOrderItems"/>
- </xs:sequence>
- <xs:attributename="OrderID"type="xs:int"/>
- <xs:attributename="CustomerID"type="xs:string"/>
- <xs:attributename="EmployeeID"type="xs:int"/>
- <xs:attributename="OrderDate"type="xs:dateTime"/>
- <xs:attributename="TypeName"type="xs:string"/>
- </xs:complexType>
- </xs:schema>
创建XSD架构文件第六部分:合法的数据文件范例
- <?xmlversion="1.0"encoding="utf-8"?>
- <TableName="Orders"CreateTime="2009/8/9 21:59:04">
- <RowTypeName="DataEntities.Order"OrderID="10249"CustomerID="ABCDEF"EmployeeID="1"OrderDate="2009-08-09T21:59:04.125+08:00">
- <OrderItems>
- <OrderItemTypeName="DataEntities.OrderItem"OrderId="10249"UnitPrice="25"Quantity="4">
- <ProductTypeName="DataEntities.Product"ProductId="1"ProductName="Pen"/>
- </OrderItem>
- <OrderItemTypeName="DataEntities.OrderItem"OrderId="10249"UnitPrice="2"Quantity="2000">
- <ProductTypeName="DataEntities.Product"ProductId="1"ProductName="Car"/>
- </OrderItem>
- </OrderItems>
- </Row>
- <RowTypeName="DataEntities.Order"OrderID="10249"CustomerID="ABCDEF"EmployeeID="1"OrderDate="2009-08-10T07:29:51.546875+08:00">
- <OrderItems>
- <OrderItemTypeName="DataEntities.OrderItem"OrderId="10249"UnitPrice="25"Quantity="4">
- <ProductTypeName="DataEntities.Product"ProductId="1"ProductName="Pen"/>
- </OrderItem>
- <OrderItemTypeName="DataEntities.OrderItem"OrderId="10249"UnitPrice="2"Quantity="2000">
- <ProductTypeName="DataEntities.Product"ProductId="1"ProductName="Car"/>
- </OrderItem>
- </OrderItems>
- </Row>
- <RowTypeName="DataEntities.Order"OrderID="10249"CustomerID="ABCDEF"EmployeeID="1"OrderDate="2009-08-10T07:30:13.375+08:00">
- <OrderItems>
- <OrderItemTypeName="DataEntities.OrderItem"OrderId="10249"UnitPrice="25"Quantity="4">
- <ProductTypeName="DataEntities.Product"ProductId="1"ProductName="Pen"/>
- </OrderItem>
- <OrderItemTypeName="DataEntities.OrderItem"OrderId="10249"UnitPrice="2"Quantity="2000">
- <ProductTypeName="DataEntities.Product"ProductId="1"ProductName="Car"/>
- </OrderItem>
- </OrderItems>
- </Row>
- <RowTypeName="DataEntities.Order"OrderID="10249"CustomerID="ABCDEF"EmployeeID="1"OrderDate="2009-08-10T07:30:43.875+08:00">
- <OrderItems>
- <OrderItemTypeName="DataEntities.OrderItem"OrderId="10249"UnitPrice="25"Quantity="4">
- <ProductTypeName="DataEntities.Product"ProductId="1"ProductName="Pen"/>
- </OrderItem>
- <OrderItemTypeName="DataEntities.OrderItem"OrderId="10249"UnitPrice="2"Quantity="2000">
- <ProductTypeName="DataEntities.Product"ProductId="1"ProductName="Car"/>
- </OrderItem>
- </OrderItems>
- </Row>
- </Table>
XSD与C#Code以及XML之间的相互关心的更多相关文章
- JAVA Bean和XML之间的相互转换 - XStream简单入门
JAVA Bean和XML之间的相互转换 - XStream简单入门 背景介绍 XStream的简介 注解简介 应用实例 背景介绍 我们在工作中经常 遇到文件解析为数据或者数据转化为xml文件的情况, ...
- 利用Vistual Studio自带的xsd.exe工具,根据XML自动生成XSD
利用Vistual Studio自带的xsd.exe工具,根据XML自动生成XSD 1, 命令提示符-->找到vs自带的xsd.exe工具所在的文件夹 例如: C:\Program Files ...
- 使用JAXB来实现Java合xml之间的转换
使用jaxb操作Java与xml之间的转换非常简单,看个例子就明白了. //javaBean-->xml @Test public void test1() { try { JAXBContex ...
- WebService(2)-XML系列之Java和Xml之间相互转换
源代码下载:链接:http://pan.baidu.com/s/1ntL1a7R password: rwp1 本文主要讲述:使用jaxb完毕对象和xml之间的转换 TestJava2xml.java ...
- java与xml之间的转换(jaxb)
使用java提供的JAXB来实现java到xml之间的转换,先创建两个持久化的类(Student和Classroom): Classroom: package com.model; public cl ...
- JAXB实现java对象与xml之间转换
JAXB简介: 1.JAXB能够使用Jackson对JAXB注解的支持实现(jackson-module-jaxb-annotations),既方便生成XML,也方便生成JSON,这样一来可以更好的标 ...
- Xml与DataTable相互转换方法
1.Xml与DataTable相互转换方法:http://www.cnblogs.com/lilin/archive/2010/04/18/1714927.html
- 别名现象,java对象之间的相互赋值
请看一下代码 import java.util.*; class book{ static int c = null; } public static void main(String[] args ...
- JAVA和C/C++之间的相互调用。
在一些Android应用的开发中,需要通过JNI和 Android NDK工具实现JAVA和C/C++之间的相互调用. Java Native Interface (JNI)标准是java平台的一部分 ...
随机推荐
- 20154312 曾林 EXP6 信息搜集与漏洞扫描
目录 1.实验后回答问题 2.实验总结与体会 3.实践过程记录 --3.1.信息收集 ----3.1.1.whois查询 ----3.1.2.nslookup,dig查询 ----3.1.3.trac ...
- 数据仓库原理<4>:联机分析处理(OLAP)
本文转载自:http://www.cnblogs.com/hbsygfz/p/4762085.html 1. 引言 本篇主要介绍数据仓库中的一项重要分析技术——联系分析处理(OLAP). 在第一篇笔者 ...
- javascript闭包(Module模式)的用途和高级使用方式
javascript闭包(Module模式)的用途和高级使用方式 javascript闭包的用途:1. 匿名自执行函数:或者可以理解为,避免污染全局变量2. 缓存:源于闭包的核心特性便是保存状态,应用 ...
- appium自动化测试实战
一.Appium的介绍 Appium是一款开源的自动化测试工具,其支持iOS和安卓平台上的原生的,基于移动浏览器的,混合的应用. 1. 使用appium进行自动化测试的好处 Appium在不同平台 ...
- ACM题目————Face The Right Way
Description Farmer John has arranged his N (1 ≤ N ≤ 5,000) cows in a row and many of them are facing ...
- python模块-json、pickle、shelve
json模块 用于文件处理时其他数据类型与js字符串之间转换.在将其他数据类型转换为js字符串时(dump方法),首先将前者内部所有的单引号变为双引号,再整体加上引号(单或双)转换为js字符串:再使用 ...
- 20145101《Java程序设计》第5周学习总结
20145101<Java程序设计>第5周学习总结 教材学习内容总结 第八章 异常处理 Java是通过try,catch,throw,throws,finally这5个关键字来实现异常处理 ...
- 2018-2019-1 20189218《Linux内核原理与分析》第六周作业
向menuOS中增加命令 修改menu目录下的test.c文件,增加自己的函数定义,并在修改main()函数,按照前面的menuconfig的写法写好自己的menuconfig. 我选择的是acces ...
- JRebel for IntelliJ 热部署破解方法
1.打开idea,然后打开设置. 2.点击Plugins 3.重启之后点击 4.下载激活JRebel的插件,下载地址:https://github.com/ilanyu/ReverseProxy/re ...
- vim的个性化配置- 再谈vim的折叠和展开 -- 彻底掌握vim 的展开和折叠!
http://www.wklken.me/posts/2016/02/03/some-vim-configs.html 一般把 设置成 逗号, 是比较好的, 因为逗号比默认的leader 要方便键入 ...