当前位置:网站首页>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
边栏推荐
- 实战:fabric 用户证书吊销操作流程
- C#/VB. Net to add text / image watermarks to PDF documents
- 洞见科技解决方案总监薛婧:联邦学习助力数据要素安全流通
- Scrapy 框架学习
- Building intelligent gray-scale data system from 0 to 1: Taking vivo game center as an example
- 模块化笔记软件综合评测:Craft、Notion、FlowUs
- Using nsproxy to forward messages
- Use fail2ban to prevent password attempts
- CVPR 2022 | transfusion: Lidar camera fusion for 3D target detection with transformer
- 【云原生 | Kubernetes篇】深入了解Ingress(十二)
猜你喜欢

CVPR 2022 | TransFusion:用Transformer进行3D目标检测的激光雷达-相机融合

DGraph: 大规模动态图数据集

Annual comprehensive analysis of China's mobile reading market in 2022

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

Alibaba cloud award winning experience: build a highly available system with polardb-x

Dgraph: large scale dynamic graph dataset

CANN算子:利用迭代器高效实现Tensor数据切割分块处理

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

Solution: how to delete the information of Jack in two tables with delete in one statement in Oracle

Zhongang Mining: in order to ensure sufficient supply of fluorite, it is imperative to open source and save flow
随机推荐
XML入门三
Go zero micro service practical series (IX. ultimate optimization of seckill performance)
Cann operator: using iterators to efficiently realize tensor data cutting and blocking processing
Excuse me, have you encountered this situation? CDC 1.4 cannot use timestamp when connecting to MySQL 5.7
Is the outdoor LED screen waterproof?
高效!用虚拟用户搭建FTP工作环境
Using scrcpy projection
Personalized online cloud database hybrid optimization system | SIGMOD 2022 selected papers interpretation
「小技巧」给Seurat对象瘦瘦身
ISO 27001 Information Security Management System Certification
C#/VB. Net to add text / image watermarks to PDF documents
After the game starts, you will be prompted to install HMS core. Click Cancel, and you will not be prompted to install HMS core again (initialization failure returns 907135003)
面向个性化需求的在线云数据库混合调优系统 | SIGMOD 2022入选论文解读
游戏启动后提示安装HMS Core,点击取消,未再次提示安装HMS Core(初始化失败返回907135003)
Interviewer: what is the difference between redis expiration deletion strategy and memory obsolescence strategy?
实战:fabric 用户证书吊销操作流程
三星量产3纳米产品引台媒关注:能否短期提高投入产出率是与台积电竞争关键
【FAQ】华为帐号服务报错 907135701的常见原因总结和解决方法
CANN算子:利用迭代器高效实现Tensor数据切割分块处理
MDK在头文件中使用预编译器时,#ifdef 无效的问题