Maison >développement back-end >Tutoriel XML/RSS >apprentissage XML (2) diagramme de structure d'arborescence de documents XML

apprentissage XML (2) diagramme de structure d'arborescence de documents XML

黄舟
黄舟original
2017-02-23 14:31:082218parcourir

Les documents XML forment une arborescence

Les documents XML doivent contenir l'élément racine . Cet élément est l'élément parent de tous les autres éléments.

Les éléments d'un document XML forment une arborescence de documents. L'arbre commence à la racine et s'étend jusqu'au bas de l'arbre.

Tous les éléments peuvent avoir des éléments enfants :


<root>
  <child>
    <subchild>.....</subchild>
  </child>
</root>






L'image ci-dessus représente un livre au format XML suivant :

<bookstore>
<book category="COOKING">
  <title lang="en">Everyday Italian</title> 
  <author>Giada De Laurentiis</author> 
  <year>2005</year> 
  <price>30.00</price> 
</book>
<book category="CHILDREN">
  <title lang="en">Harry Potter</title> 
  <author>J K. Rowling</author> 
  <year>2005</year> 
  <price>29.99</price> 
</book>
<book category="WEB">
  <title lang="en">Learning XML</title> 
  <author>Erik T. Ray</author> 
  <year>2003</year> 
  <price>39.95</price> 
</book>
</bookstore>

Le L'élément racine dans l'exemple est . Tous les éléments du document sont contenus dans une . L'élément

a 4 éléments enfants : , <author>, <year>, <price>. </p> <p> Ce qui précède est le contenu du diagramme de structure arborescente du document XML Learning (2). Pour plus de contenu connexe, veuillez faire attention au site Web PHP chinois (www.php.cn) ! </p> <p><br></p></div><div class="nphpQianMsg"><div class="clear"></div></div><div class="nphpQianSheng"><span>Déclaration:</span><div>Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn</div></div></div><div class="nphpSytBox"><span>Article précédent:<a class="dBlack" title="XML apprentissage (1) plusieurs formats de fichiers XML" href="https://m.php.cn/fr/faq/353346.html">XML apprentissage (1) plusieurs formats de fichiers XML</a></span><span>Article suivant:<a class="dBlack" title="XML apprentissage (1) plusieurs formats de fichiers XML" href="https://m.php.cn/fr/faq/353349.html">XML apprentissage (1) plusieurs formats de fichiers XML</a></span></div><div class="nphpSytBox2"><div class="nphpZbktTitle"><h2>Articles Liés</h2><em><a href="https://m.php.cn/fr/article.html" class="bBlack"><i>Voir plus</i><b></b></a></em><div class="clear"></div></div><ins class="adsbygoogle" style="display:block" data-ad-format="fluid" data-ad-layout-key="-6t+ed+2i-1n-4w" data-ad-client="ca-pub-5902227090019525" data-ad-slot="8966999616"></ins><script> (adsbygoogle = window.adsbygoogle || []).push({}); </script><ul class="nphpXgwzList"><li><b></b><a href="https://m.php.cn/fr/faq/348313.html" title="Solution pour utiliser Sax pour analyser XML en Java" class="aBlack">Solution pour utiliser Sax pour analyser XML en Java</a><div class="clear"></div></li><li><b></b><a href="https://m.php.cn/fr/faq/348319.html" title="Résumé de plusieurs façons d'analyser XML en Java" class="aBlack">Résumé de plusieurs façons d'analyser XML en Java</a><div class="clear"></div></li><li><b></b><a href="https://m.php.cn/fr/faq/351276.html" title="Soyez prudent avec la méthode XmlPullParser.netText()" class="aBlack">Soyez prudent avec la méthode XmlPullParser.netText()</a><div class="clear"></div></li><li><b></b><a href="https://m.php.cn/fr/faq/351285.html" title="Android dom analyse la méthode XML" class="aBlack">Android dom analyse la méthode XML</a><div class="clear"></div></li><li><b></b><a href="https://m.php.cn/fr/faq/351502.html" title="Conseils pratiques sur les volumes XML (3) : pagination dynamique" class="aBlack">Conseils pratiques sur les volumes XML (3) : pagination dynamique</a><div class="clear"></div></li></ul></div></div><ins class="adsbygoogle" style="display:block" data-ad-format="autorelaxed" data-ad-client="ca-pub-5902227090019525" data-ad-slot="5027754603"></ins><script> (adsbygoogle = window.adsbygoogle || []).push({}); </script><footer><div class="footer"><div class="footertop"><img src="/static/imghwm/logo.png" alt=""><p>Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!</p></div><div class="footermid"><a href="https://m.php.cn/fr/about/us.html">À propos de nous</a><a href="https://m.php.cn/fr/about/disclaimer.html">Clause de non-responsabilité</a><a href="https://m.php.cn/fr/update/article_0_1.html">Sitemap</a></div><div class="footerbottom"><p> © php.cn All rights reserved </p></div></div></footer><script>isLogin = 0;</script><script type="text/javascript" src="/static/layui/layui.js"></script><script type="text/javascript" src="/static/js/global.js?4.9.47"></script></div><script src="https://vdse.bdstatic.com//search-video.v1.min.js"></script><link rel='stylesheet' id='_main-css' href='/static/css/viewer.min.css' type='text/css' media='all'/><script type='text/javascript' src='/static/js/viewer.min.js?1'></script><script type='text/javascript' src='/static/js/jquery-viewer.min.js'></script><script>jQuery.fn.wait = function (func, times, interval) { var _times = times || -1, //100次 _interval = interval || 20, //20毫秒每次 _self = this, _selector = this.selector, //选择器 _iIntervalID; //定时器id if( this.length ){ //如果已经获取到了,就直接执行函数 func && func.call(this); } else { _iIntervalID = setInterval(function() { if(!_times) { //是0就退出 clearInterval(_iIntervalID); } _times <= 0 || _times--; //如果是正数就 -- _self = $(_selector); //再次选择 if( _self.length ) { //判断是否取到 func && func.call(_self); clearInterval(_iIntervalID); } }, _interval); } return this; } $("table.syntaxhighlighter").wait(function() { $('table.syntaxhighlighter').append("<p class='cnblogs_code_footer'><span class='cnblogs_code_footer_icon'></span></p>"); }); $(document).on("click", ".cnblogs_code_footer",function(){ $(this).parents('table.syntaxhighlighter').css('display','inline-table');$(this).hide(); }); $('.nphpQianCont').viewer({navbar:true,title:false,toolbar:false,movable:false,viewed:function(){$('img').click(function(){$('.viewer-close').trigger('click');});}}); </script></body><!-- Matomo --><script> var _paq = window._paq = window._paq || []; /* tracker methods like "setCustomDimension" should be called before "trackPageView" */ _paq.push(['trackPageView']); _paq.push(['enableLinkTracking']); (function() { var u="https://tongji.php.cn/"; _paq.push(['setTrackerUrl', u+'matomo.php']); _paq.push(['setSiteId', '9']); var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0]; g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s); })(); </script><!-- End Matomo Code --></html>