当前位置:网站首页>Introduction to XML I
Introduction to XML I
2022-07-04 13:41:00 【Hua Weiyun】
Xml Basics 01
Concept :
Extensible markup language , It is a way to store data in simple text format . Can be used for Serialization deserialization ( Serialization is done by converting objects into byte streams , To store or transfer objects to memory , The process of a database or file . The main purpose is to save the state of the object , Include the data of the object , So that the object can be rebuilt when needed . The reverse process is called Deserialization .)
xml The elements of - element:
A pair of angle brackets and angle bracket slashes together form a basic element . for example <> </>, Internally xml Label marking of . In the middle of the angle brackets is the content .
Such as : <book> Journey to the west </book>
<title> Journey to the west </title>
<auther> Wu chengen </auther>
Tags can have inclusive relationships , Nested relationships ( However, it is not recommended , The code is too complex to read )
xml Elements and attributes of
attribute : <book title=‘ Journey to the west ’>
</book>
The difference between elements and attributes :
It is also the way of storing data
Not much difference
Elements cannot describe complex objects
xml Statement of
Declaration file format , edition , codec .
<?xml version="1.0"?><?xml version="1.0" encoding="utf-8" ?><?xml version="1.0" encoding="GBK" ?>xml Notes
Annotation symbols
<!-- -->xml Structure
Xml It provides a structured way to organize data , Unlike a relational database .
Xml Data is organized hierarchically , It's kind of similar windows explorer Folders and files in .
Every document must have a root element , It contains all elements and text data .( That is, there must be a root tag element , Other tag elements are contained by it )
<?xml version="1.0"?><books> <book></book></books><!-- It's legal ->xml The namespace of
That is to say xml Name a name .
For example, the following table :
<?xml version="1.0"?><books xmlns:myNS="123123"> <book></book></books>xml The rules of
1. There must be a declaration statement
<? xml version=“1.0” ?>
2. Yes and only 1 A root element
3. Every element has a closed tag
4. There are no overlapping elements — All child elements must be completely nested within the parent element
5. All attributes must be enclosed in quotation marks
DTD Document definition type
It is not allowed to specify the data type of elements and attributes ( Yes xml The provisions of the document are binding )
schema
frequently-used XSD XML Schema Deinition language
stay .net Also known as XML framework , You can specify the data structure of elements and attributes , With .xsd File storage
Namespace :
http://www.w3.org/2001/XMLSchema Root element : <schema></schema>
<?xml version="1.0"encoding="utf-8"?><xs:schema id="SchemaBooks" targetNamespace="http://tempuri.org/SchemaBooks.xsd" elementFormDefault="qualified" xmins="http://tempuri.org/SchemaBooks.xsd" xmlns:mstns="http://tempuri.org/SchemaBooks.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:element name="Books"> <xs:complexType> <xs:choice maxOccurs="unbounded"> <xs:element name="Book"> <xs:complexType> <xs:sequence> <xs:element name="title"type="xs:string"/> <xs;element name="price"type="xs:decimal"/> </xs;sequence> </xs:complexType> </xs:element> </xs;choice> </xs:complexType> </xs:element></xs:schema><!--schema Document root path ( Elements )element node choice complex junction maxOccurs The number of nodes is limited unbounded Is there a limit complexType Specify the element type under this label ->xml And xsd relation
stay vs in , Can pass
System.Data.DataSet ds = new System.Data.DataSet();ds.ReadXml("");ds.WriteXmlSchema("");// Can be xml The file is read and converted to xsd file xsd Several common defaults for :
xmlns:xs=http://www.w3.org/2001/XMLSchema
schema The specification defines the namespaces of some basic data types
targetNamespace=http://tempuri.org/SchemaBookStore.xsd
The schema Of the namespace of URI quote .
xmlns=http://tempuri.org/SchemaBookStore.xsd
Ben XSD Namespace
xmlns:mstns=http://tempuri.org/SchemaBookStore.xsd
Ben XSD Namespace , The prefix name is mstns
Document object model
Document Object Model, DOM
Based on the object ( Based on trees )( Suitable for object extraction, etc )
SAX
Simple API for XML
Based on flow 、 Push model ( Better performance , It is more suitable for reading and parsing data )
DOM Document object model main classes
XmlNode: Express XML A single node in the document .
XmlDocument: Express XML file , Inherited from XmlNode .
XmlElement: Represents an element .
XmlAttribute Represents an attribute
XmlText: Represents the text content of the element .
XmlComment Express XML Content of notes .
XmlNodeList Represents a collection of nodes .
XmlNode.ChildNodes - Returns a that contains all children of the node XmlNodeList.
XmlNode.SelectNodes - Return contains matches XPath Of the node set queried XmlNodeList
XmlDocument Use
Definition ****XmlDocument
XmlDocument document = new XmlDocument();
load XMl file
document.Load(“XML file ”);
Namespace
using System.Xml;
Common properties :
FirstChild Get the first child of the node . ( Inherited from XmlNode.)
DocumentElement Get the root of the document XmlElement.
Common methods
Load()
Save()
Get root node
document.FirstChild
Get the root element
document.DocumentElement
About XmlNode Several important attributes of
FirstChild
LastChild
HasChildNodes
ParentNode
NextSibling
Use DOM establish xml file
Create nodes :
XmlDocument**** Method
CreateNode node
CreateElement Elements
CreateAttribute attribute
CreateTextNode Content
CreateComment notes
Insert node :
XmlNode**** Method
AppendChild Final addition
InsertAfter Add before
InsertBefore Add
Delete node :
XmlNode Method
RemoveAll Delete all
RemoveChild Delete a
RemoveAttribute Delete a property
边栏推荐
- Is the outdoor LED screen waterproof?
- [AI system frontier dynamics, issue 40] Hinton: my deep learning career and research mind method; Google refutes rumors and gives up tensorflow; The apotheosis framework is officially open source
- WPF双滑块控件以及强制捕获鼠标事件焦点
- 阿里云有奖体验:用PolarDB-X搭建一个高可用系统
- Dry goods sorting! How about the development trend of ERP in the manufacturing industry? It's enough to read this article
- A data person understands and deepens the domain model
- Efficient! Build FTP working environment with virtual users
- Alibaba cloud award winning experience: build a highly available system with polardb-x
- 三星量产3纳米产品引台媒关注:能否短期提高投入产出率是与台积电竞争关键
- 【FAQ】华为帐号服务报错 907135701的常见原因总结和解决方法
猜你喜欢

一文掌握数仓中auto analyze的使用

实时云交互如何助力教育行业发展

Comparative study of the gods in the twilight Era

Reptile exercises (I)

Dry goods sorting! How about the development trend of ERP in the manufacturing industry? It's enough to read this article

Dgraph: large scale dynamic graph dataset

Interviewer: what is the difference between redis expiration deletion strategy and memory obsolescence strategy?

2022年中国移动阅读市场年度综合分析

美团·阿里关于多模态召回的应用实践

n++也不靠谱
随机推荐
Comparative study of the gods in the twilight Era
三星量产3纳米产品引台媒关注:能否短期提高投入产出率是与台积电竞争关键
Node の MongoDB 安装
比量子化学方法快六个数量级,一种基于绝热状态的绝热人工神经网络方法,可加速对偶氮苯衍生物及此类分子的模拟
阿里云有奖体验:用PolarDB-X搭建一个高可用系统
XML入门三
PostgreSQL 9.1 soaring Road
Use fail2ban to prevent password attempts
使用宝塔部署halo博客
Backgroundworker usage example
高质量软件架构的唯一核心指标
面向个性化需求的在线云数据库混合调优系统 | SIGMOD 2022入选论文解读
「小技巧」给Seurat对象瘦瘦身
用fail2ban阻止密码尝试攻
"Pre training weekly" issue 52: shielding visual pre training and goal-oriented dialogue
Commvault 和 Oracle 合作,在 Oracle 云上提供 Metallic数据管理即服务
二分查找的简单理解
Rsyslog configuration and use tutorial
Golang sets the small details of goproxy proxy proxy, which is applicable to go module download timeout and Alibaba cloud image go module download timeout
2022年中国移动阅读市场年度综合分析