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平台的一部分 ...
随机推荐
- [转] Matlab编程规范(MATLAB Programming Style Guidelines)
转自: Jerry Zitao Liu的博客 主要是参考了下面这篇文章,简洁总结在这里. MATLAB Programming Style Guidelines 简洁总结如下: 表示object的数量 ...
- HexDump.java解析,android 16进制转换
HexDump.java解析android 16进制转换 package com.android.internal.util; public class HexDump { private final ...
- zookeeper与卡夫卡集群搭建
首先这片博客没有任何理论性的东西,只是详细说明kafka与zookeeper集群的搭建过程,需要三台linux服务器. java环境变量设置 zookeeper集群搭建 kafka集群搭建 java环 ...
- bzoj1635 / P2879 [USACO07JAN]区间统计Tallest Cow
P2879 [USACO07JAN]区间统计Tallest Cow 差分 对于每个限制$(l,r)$,我们建立一个差分数组$a[i]$ 使$a[l+1]--,a[r]++$,表示$(l,r)$区间内的 ...
- P1771 方程的解_NOI导刊2010提高(01)
P1771 方程的解_NOI导刊2010提高(01) 按题意用快速幂把$g(x)$求出来 发现这不就是个组合数入门题吗! $k$个人分$g(x)$个苹果,每人最少分$1$个,有几种方法? 根据插板法, ...
- 简单的Django实现图片上传,并存储进MySQL数据库 案例——小白
目标:通过网页上传一张图片到Django后台,后台接收并存储进数据库 真是不容易!!这个案例的代码网上太乱,不适合我,自己摸索着写,终于成功了,记录一下,仅供自己参考,有的解释可能不对,自己明白就好, ...
- 更改 Centos 6 的 yum 源
1.查看当前使用的源: yum repolist all 阿里源网址,使用方法点右边的帮助可以看到:https://opsx.alibaba.com/mirror 2.更改源: 第一步:备份你的原镜像 ...
- 【前端】Vue.js实现网格列表布局转换
网格列表布局转换 实现效果: 实现代码及注释: <!DOCTYPE html> <html> <head> <title>布局转换</title& ...
- linux下安装与运行docker
写者环境: 1.lsb_release -a hello@hello:~$ lsb_release -aNo LSB modules are available.Distributor ID: Ubu ...
- zedgraph右键菜单的汉化
http://blog.csdn.net/jeryler/article/details/7876376 修改 zedGraphControl的ContextMenuBuilder事件即可! zedG ...