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平台的一部分 ...
随机推荐
- uva11354 LCA+最小生成树+dp
源自大白书 题意 有n座城市通过m条双向道路相连,每条道路都有一个危险系数.你的任务是回答若干个询问,每个询问包含一个起点s和一个终点t,要求找到一条从s到t的路,使得途径所有的边的大最大危险系数最小 ...
- EditPlus 4.3.2502 中文版已经发布(12月5日更新)
新的版本修复了在之前某版本中键盘 End 键定位位置错误的问题.
- 服务器返回的json数据中含有null的处理方法
个人博客:http://guohuaden.com/2017/03/06/json-dataNull/因为有遇到过类似情况,所以就想到了一些解决方法,并且实践了一下,这里简单的做个记录. 注:有看到不 ...
- 虚拟环境Scrapy安装
1.进入安装的虚拟环境(安装虚拟环境请参考我的博客“在windows下安装Python虚拟环境”) 2.pip install Scrapy
- Java设计模式应用——组合模式
组合模式实际上是一种树形数据结构.以windows目录系统举例,怎么样用java语言描述一个文件夹? 定义一个文件夹类,文件夹类中包含若干个子文件类和若干个文件类. 进一步抽象,把文件夹和文件都看做节 ...
- python 模拟windows键盘按键的封装
代码:在执行的时候,把光标放在指定的地方,在此例中,点击运行后把光标放到结果区域,粘贴的时候是粘贴到光标所在的问题,如过是运行脚本在web元素输入框中输入的话,不能移动光标到其他位置 #encodin ...
- 20145316《网络对抗》Exp9 Web安全基础实践学习总结
20145316<网络对抗>Exp9 Web安全基础实践学习总结 基础问题回答 SQL注入攻击原理,如何防御 SQL注入,就是攻击者通过把SQL命令插入到Web表单递交或输入域名或页面请求 ...
- Vue源码解析之nextTick
Vue源码解析之nextTick 前言 nextTick是Vue的一个核心功能,在Vue内部实现中也经常用到nextTick.但是,很多新手不理解nextTick的原理,甚至不清楚nextTick的作 ...
- 计算概论(A)/基础编程练习1(8题)/7:奇数求和
#include<stdio.h> int main() { // 输入非负整数 int m, n; scanf("%d %d", &m, &n); / ...
- python3 isinstance()判断元素是否是字符串、int型、float型
python3 isinstance()判断元素是否是字符串.int型.float型 isinstance是Python中的一个内建函数 语法: isinstance(object, classinf ...