标签:win images lock price blog 心经 myeclips myeclipse windows
礼悟:
好好学习多思考,尊师重道存感恩。叶见寻根三二一,江河湖海同一体。
虚怀若谷良心主,愿行无悔给最苦。读书锻炼强身心,诚劝且行且珍惜。
xml:1.0
os:windows7 x64
ide:MyEclipse 2017
符合dtd约束的xml文件
<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE shopping [ <!ELEMENT book (name,price,count,comment*)> <!ELEMENT name (#PCDATA)> <!ELEMENT price (#PCDATA)> <!ELEMENT count (#PCDATA)> <!ELEMENT comment (#PCDATA)> ]> <shopping> <!-- <!ELEMENT book (name,price,count,comment*)> book的子元素的顺序必须是:name,price,count,comment 出现次数是:name/price/count出现一次 comment 次数不限 --> <book> <name>抱朴子</name> <price>100</price> <count>3</count> <!-- comment出现0次 --> </book> <book> <name>三字经</name> <price>200</price> <count>5</count> <comment>90</comment><!-- comment出现1次 --> </book> <book> <name>心经</name> <price>300</price> <count>7</count> <comment>90</comment> <comment>80</comment><!-- comment出现2次 --> </book> </shopping>
myeclipse进行约束检查结果
xml优秀,值得学习。在w3cschool网站中,可以更加全面地学习dtd。
学习资源:itcast和itheima视频库。如果您有公开的资源,可以分享给我的话,用您的资源学习也可以。
博文是观看视频后,融入思考写成的。博文好,是老师讲得好。博文坏,是 给最苦 没认真。
标签:win images lock price blog 心经 myeclips myeclipse windows
原文地址:http://www.cnblogs.com/jizuiku/p/7679997.html