其他分享
首页 > 其他分享> > XML文档里面的标签属性

XML文档里面的标签属性

作者:互联网

什么是XML?

XML曾一度是互联网上存储和传输结构化数据的标准。 ——《Javascript高级程序设计》

XML 被设计用来传输和存储数据,不用于表现和展示数据,HTML 则用来表现数据。 ——《XML教程 | 菜鸟教程》

可扩展标记语言(英语:Extensible Markup Language,简称:XML)是一种标记语言,是从标准通用标记语言(SGML)中简化修改出来的。它主要用到的有可扩展标记语言、可扩展样式语言(XSL)、XBRL和XPath等。 ——《XML教程 | 菜鸟教程》

XML 标签没有被预定义。您需要自行定义标签。——《XML教程 | 菜鸟教程》

教程地址:XML 教程 | 菜鸟教程 (runoob.com)

 

为什么要在这里解析下XML文档的结构?

BPMN2.0规范,常常使用XML类型的文件来定义一个流程,这里对其中的一些元素做一些注解,以助于在业务开发中理解和修改流程导出的XML文件。

XML基础

DOM node tree

1 <!-- this is comment -->

第一个实例中使用了 date 属性:

1 2 3 4 5 6 <note date="10/01/2008">     <to>Tove</to>     <from>Jani</from>     <heading>Reminder</heading>     <body>Don't forget me this weekend!</body> </note>

第二个实例中使用了 date 元素:

1 2 3 4 5 6 7 <note>     <date>10/01/2008</date>     <to>Tove</to>     <from>Jani</from>     <heading>Reminder</heading>     <body>Don't forget me this weekend!</body> </note>

第三个实例中使用了扩展的 date 元素(这是我的最爱):

1 2 3 4 5 6 7 8 9 10 11 <note>     <date>         <day>10</day>         <month>01</month>         <year>2008</year>     </date>     <to>Tove</to>     <from>Jani</from>     <heading>Reminder</heading>     <body>Don't forget me this weekend!</body> </note>
1 2 3 4 5 6 7 8 9 10 11 <?xml version="1.0" encoding="UTF-8"?> <bpmn:definitions     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"     xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL"     xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI"     xmlns:dc="http://www.omg.org/spec/DD/20100524/DC"     xmlns:camunda="http://camunda.org/schema/1.0/bpmn"     xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="Definitions_1" targetNamespace="http://bpmn.io/schema/bpmn">         <bpmn:process id="Process_1" isExecutable="false">         </bpmn:process> </bpmn:definitions>

未完待续……

标签:XML,教程,xmlns,http,bpmn,标签,元素,文档,xml发生错误
来源: https://www.cnblogs.com/nicolelhh/p/16695378.html