码迷,mamicode.com
首页 > 其他好文 > 详细

xml dtd 内部dtd

时间:2016-11-19 16:17:35      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:示例   shc   sage   文档   size   hash   version   class   blog   

内部DTD

规则:

<!DOCTYPE 根元素名[]
    元素描述
>
XML文档主体部分

示例:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE messages[
    <!ELEMENT messages (message)*>
    <!ELEMENT message (title,content,hashcode)>
    <!ELEMENT title (#PCDATA)>
    <!ELEMENT content (#PCDATA)>
    <!ELEMENT hashcode (#PCDATA)>
]>
<messages>
    <message>
        <title>hello,world</title>
        <content>hello</content>
        <hashcode>2kljfosaf7912</hashcode>
    </message>
</messages>

xml dtd 内部dtd

标签:示例   shc   sage   文档   size   hash   version   class   blog   

原文地址:http://www.cnblogs.com/heben/p/6080474.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!