以下是一个简单的 XML 示例,表示一个书店的图书信息:
<bookstore>
  <book category="Fiction">
    <title lang="en">Harry Potter and the Philosopher's Stone</title>
    <author>J.K. Rowling</author>
    <price currency="USD">19.99</price>
  </book>
  
  <book category="Non-Fiction">
    <title lang="en">The Elements of Style</title>
    <author>William Strunk Jr.</author>
    <price currency="USD">9.95</price>
  </book>
  
  <book category="Science">
    <title lang="en">A Brief History of Time</title>
    <author>Stephen Hawking</author>
    <price currency="USD">15.00</price>
  </book>
</bookstore>

在这个示例中:

  •  <bookstore> 是根元素,包含了所有书籍信息。

  •  每本书都由 <book> 元素表示,具有一个 category 属性表示书籍的类别。

  •  每本书包括 <title>(书名)、<author>(作者)和 <price>(价格)等元素。

  •  <title> 元素有一个 lang 属性表示书名的语言。

  •  <price> 元素有一个 currency 属性表示价格的货币。


这个 XML 示例表示了一个简单的图书馆的图书信息,其中包含了不同类别的书籍,每本书都有标题、作者和价格等信息。这种结构化的数据可以用于在不同系统之间进行数据交换或存储。


转载请注明出处:http://www.zyzy.cn/article/detail/12140/XML