我有一条 Xml 消息,其中定义了 DTD。
<?xml version="1.0" ?>
<!DOCTYPE note [
<!ELEMENT note (to)>
<!ELEMENT to (#PCDATA)>
<!ATTLIST to Value CDATA #REQUIRED>
]>
<note>
<to></to>
</note>
我希望我的验证人检查
<to>Hello</to> is correct and
<to></to> or <to/> is incorrect.
如何使用 DTD 实现这一点?
提前致谢。