xml00

Posted chbxw

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xml00相关的知识,希望对你有一定的参考价值。

<?xml verson="1.0" encoding="ISO-8859-1"?>      xml声明
<note>
  <to>jone</to>
  <from>tom</from>
  <heading>remider</heading>
  <body>Don‘t froget the meeting,</body>
</note>


xml具有出色的自我描述, 形成梳状结构


xml是严谨的,
    开始标示和结束标示必须同时拥有, 不可以本省略
    大小写敏感
    必须正确嵌套

    属性值必须加引号
    <note date="2015/08/23">
      <to>a</to>
      <from>b</from>
    </note>




xml注释
<!-- This is a comment -->


空格会被保留下,
    与html的有区别





xml的元素内容

<bookstore>
  <book category="CHILDREN">
      <title>Harry poter </title>
      <athor>H.ter</athor>
      <year>2015</year>
      <price>23.45</price>
  </book>

</bookstore>









属性 vs 元素,
  元素的可读性,更高
  
<note>
  <date>
    <day>08</day>
    <month>08</month>
    <year>2008</year>
  </date>
  <to>tom</to>
  <from>jhon</from>
  <heading>reminder</heading>
  <body>Don‘t forget the meeting</body> </note>










 

以上是关于xml00的主要内容,如果未能解决你的问题,请参考以下文章

什么是工具:片段 xml 文件中的布局?

从流输入中解析没有根元素的 XML 片段列表

在Tomcat的安装目录下conf目录下的server.xml文件中增加一个xml代码片段,该代码片段中每个属性的含义与用途

android.view.inflateexception 二进制 xml 文件第 7 行错误膨胀类片段

xml Eclipse模板(代码片段)检查参数并最终抛出IllegalArgumentException

需要示例代码片段帮助