XML 笔记

                     

贡献者: addis

  • 本文处于草稿阶段。

   一个例子

<?xml version="1.0" encoding="UTF-8"?>
<bookstore>
  <book lang="en">
    <categories>
      <category>COOKING</category>
      <category>ITALIAN</category>
    </categories>
    <title lang="en">Everyday Italian</title>
    <author>Giada De Laurentiis</author>
    <year>2005</year>
    <price>30.00</price>
  </book>
  <book lang="en">
    <categories>
      <category>CHILDREN</category>
      <category>FANTASY</category>
    </categories>
    <title lang="en">Harry Potter</title>
    <author>J K. Rowling</author>
    <year>2005</year>
    <price>29.99</price>
  </book>
</bookstore>

                     

© 小时科技 保留一切权利