<?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的更多相关文章

随机推荐

  1. ZOJ 1654--Place the Robots【二分匹配 &amp;&amp; 经典建图】

    Place the Robots Time Limit: 5 Seconds      Memory Limit: 32768 KB Robert is a famous engineer. One ...

  2. elasticsearch插件开发

    检索引擎Elasticsearch支持插件模式.有些时候你可能须要安装一些插件.甚至自己开发插件,这里就提供一个開始ES插件开发演示样例,ES版本号为1.5.2. 一.插件类继承自org.elasti ...

  3. [Linux]RedHat Linux 忘记rootpassword该怎样又一次设置password

    1. 开机在出现grub画面,按e键,例如以下图所看到的: watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvU3VubnlZb29uYQ==/font/5a6 ...

  4. 2016.04.07,英语,《Vocabulary Builder》Unit 11

    cant, from the Latin verbs canere and cantare, meaning 'sing'. by way of French, add an h to the roo ...

  5. ASP.NET Razor - C# and VB Code Syntax

    http://www.w3schools.com/aspnet/razor_syntax.asp Razor supports both C# (C sharp) and VB (Visual Bas ...

  6. [JavaEE] Apache Maven 入门篇(上)

    http://www.oracle.com/technetwork/cn/community/java/apache-maven-getting-started-1-406235-zhs.html 作 ...

  7. Java IO-InputStream家族 -装饰者模式

    最近看到一篇文章,初步介绍java.io.InputStream,写的非常通俗易懂,在这里我完全粘贴下来. 来源于 https://mp.weixin.qq.com/s/hDJs6iG_YPww7ye ...

  8. Aspose.Words进行Word替换(插入图片和水印)

    由于最近一直在忙着做着Word打印模板的一些工作,就整理一些Asponse.Words对Word文档进行操作的资料. using System; using System.Collections.Ge ...

  9. week1 notebook1

    初识Python 一.python介绍 - 解释器: cpython(默认使用) ipython(shell) jpython(java) ironpython rubypython - 编码: as ...

  10. [转]解决C# WinForm 中 VSHOST.EXE 程序不关闭的问题

    右击“解决方案”--属性-调试栏-启用调试器部分-“启用Visual studio宿主进程”不勾选