欢迎来到天天文库
浏览记录
ID:24279944
大小:52.50 KB
页数:3页
时间:2018-11-13
《xml 文档树--》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、xml文档树>>XMLumentsformatreestructurethatstartsat"theroot"andbranchesto"theleaves".XML文档树起始于“根元素”,并以此为基础扩展文档的分支结构。AnExampleXMLDocument下面举一个XML文档案例XMLumentsuseaself-describingandsimplesyntax:XML文档使用一种相对简单的自述性语法:<?xmlversion="1.0"encoding="ISO-8859-1"?><note><to>Tove</to><from>Ja
2、ni</from><heading>Reminder</heading><body>Don'tforgetmethisentoftheument(likesaying:"thisumentisanote"):接下来的一行定义了文档的根元素(指明该文档是一份便条):<note>Thenext4linesdescribe4childelementsoftheroot(to,from,heading,andbody):再接下去的4行定义了根元素的4个子元素,分别是“to”、“form”、“heading”和“body”:<to>Tove</
3、to><from>Jani</from><heading>Reminder</heading><body>Don'tforgetmethisent:文档的最后一行定义了根元素的结束标签:</note>Youcanassume,fromthisexample,thattheXMLumentcontainsanotetoTovefromJani.举个例子来说,你可以假设这份XML文档是Jani递交给Tove的一张便条。Don'tyouagreethatXMLisprettyself-descriptive?通过上述案例,对于XML是一种完美的自
4、述性语言这点应该毋庸置疑了吧?XMLDocumentsFormaTreeStructureXML树状结构文档XMLumentsmustcontainarootelement.Thiselementis"theparent"ofallotherelements.XML文档必须包含一个根元素。这个根元素是其它所有元素的“父元素”。TheelementsinanXMLumentformaumenttree.Thetreestartsattherootandbranchestotheloentscanhavesubelements(childelements):文档中所有的元素都可以
5、包含二级元素(即:子元素):<root><child><subchild>.....</subchild></child></root>Thetermsparent,child,andsiblingareusedtodescribetherelationshipsbetents.Parentelementshavechildren.Childrenonthesamelevelarecalledsiblings(brothersorsisters).这里提到的一些术语,如:父元素、子元素、同级元素使用与描述元素之间的相互关系的。父元素包含子元
6、素;和子元素同级的称为同级元素(或兄弟、姐妹元素)。Allelementscanhavetextcontentandattributes(justlikeinHTML).所有的元素都包含文本内容和属性(这点和HTML极其类似)。Example:案例:TheimageaboverepresentsonebookintheXMLbeloentintheexampleis<bookstore>.All<book>elementsintheumentarecontainedenthas4children:<title>,<author>,<year>,&
7、lt;price>.与此同时,<book>元素还包含了4个子元素:<title>、<author>、<year>、<price>。9731248:>>>>这篇文章来自..,。
此文档下载收益归作者所有