XML小练习(一)

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE students 
[
      <!ELEMENT students (student*)>
      <!ELEMENT student (name+,class+,number+,duty*,sex+,hometown?)>
      <!ELEMENT name (#PCDATA)>
      <!ELEMENT class (#PCDATA)>
      <!ELEMENT number (#PCDATA)>
      <!ELEMENT duty (#PCDATA)>
      <!ELEMENT sex (#PCDATA)>
      <!ELEMENT hometown (province?,city?)>
      <!ELEMENT province (#PCDATA)>
      <!ELEMENT city (#PCDATA)>
]>

<students>
  
   <student>
      <name>张三</name>
      <class>1406401</class>
      <number>1406401-01</number>
      <duty>团支书</duty>
      <sex>男</sex> 
      <hometown>
        <province>湖南省</province>
        <city>长沙市</city>
       </hometown>
   </student>
   
   <student>
      <name>李四</name>
      <class>1406101</class>
      <number>1406101-02</number>
      <duty>学习委员</duty>
      <sex>女</sex> 
       <hometown>
        <city>北京</city>
        </hometown>
   </student>
   
   <student>
      <name>王五</name>
      <class>1406402</class>
      <number>1406402-03</number>
      <sex>男</sex>
       <hometown>
        <province>山西省</province>
        <city>大同市</city>
       </hometown>
   </student>
   
   <student>
      <name>孙六</name>
      <class>1406401</class>
      <number>1406401-04</number>
      <sex>男</sex>
       <hometown>
        <province>湖北省</province>
        <city>武汉市</city>
       </hometown>
   </student>
  
   <student>
      <name>赵七</name>
      <class>1406102</class>
      <number>1406102-05</number>
      <duty>班长</duty>
      <sex>男</sex> 
       <hometown>
        <province>湖南省</province>
        <city>益阳市</city>
       </hometown>
   </student>
  

</students>

相关文章

引言 NOKIA 有句著名的广告语:“科技以人为本”。任何技术都是为了满足人的生产生活需要而产生的。具体...
Writer:BYSocket(泥沙砖瓦浆木匠) 微博:BYSocket 豆瓣:BYSocket Reprint it anywhere u want. 文章...
Writer:BYSocket(泥沙砖瓦浆木匠) 微博:BYSocket 豆瓣:BYSocket Reprint it anywhere u want. 文章...
http://blog.jobbole.com/79252/ 引言 NOKIA 有句著名的广告语:“科技以人为本”。任何技术都是为了满...
(点击上方公众号,可快速关注) 公众号:smart_android 作者:耿广龙|loonggg 点击“阅读原文”,可查看...
一、xml与xslt 相信所有人对xml都不陌生,其被广泛的应用于数据数据传输、保存与序列化中,是一种极为强...