当前位置:网站首页>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
边栏推荐
- Don't turn down, three sentences to clarify the origin of cross domain resource request errors
- Configure WebDAV server on Apache
- PostgreSQL 9.1 飞升之路
- 游戏启动后提示安装HMS Core,点击取消,未再次提示安装HMS Core(初始化失败返回907135003)
- 读《认知觉醒》
- Cors: standard scheme of cross domain resource request
- Valentine's Day confession code
- 模块化笔记软件综合评测:Craft、Notion、FlowUs
- HAProxy高可用解决方案
- 面试官:Redis 过期删除策略和内存淘汰策略有什么区别?
猜你喜欢
求解:在oracle中如何用一条语句用delete删除两个表中jack的信息
CA: efficient coordinate attention mechanism for mobile terminals | CVPR 2021
runc hang 导致 Kubernetes 节点 NotReady
Read the BGP agreement in 6 minutes.
n++也不靠谱
Cann operator: using iterators to efficiently realize tensor data cutting and blocking processing
C#/VB. Net to add text / image watermarks to PDF documents
Database lock table? Don't panic, this article teaches you how to solve it
Comparative study of the gods in the twilight Era
Reinforcement learning - learning notes 1 | basic concepts
随机推荐
Runc hang causes the kubernetes node notready
强化学习-学习笔记1 | 基础概念
使用 NSProxy 实现消息转发
CANN算子:利用迭代器高效实现Tensor数据切割分块处理
Master the use of auto analyze in data warehouse
室外LED屏幕防水吗?
PostgreSQL 9.1 soaring Road
Practice: fabric user certificate revocation operation process
A taste of node JS (V), detailed explanation of express module
面向个性化需求的在线云数据库混合调优系统 | SIGMOD 2022入选论文解读
Interviewer: what is the difference between redis expiration deletion strategy and memory obsolescence strategy?
How real-time cloud interaction helps the development of education industry
Reinforcement learning - learning notes 1 | basic concepts
CVPR 2022 | transfusion: Lidar camera fusion for 3D target detection with transformer
A data person understands and deepens the domain model
Dgraph: large scale dynamic graph dataset
Runc hang causes the kubernetes node notready
Samsung's mass production of 3nm products has attracted the attention of Taiwan media: whether it can improve the input-output rate in the short term is the key to compete with TSMC
Oracle 被 Ventana Research 评为数字创新奖总冠军
Apache服务器访问日志access.log设置