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