org.xml.sax.SAXParseException: The entity "ndash" was referenced, but not declared
I'm parsing the the following...
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE tox:message SYSTEM "http://tox.sf.net/tox/dtd/tox.dtd">
<tox:message xmlns:tox="http://tox.sourceforge.net/">
<tox:model owner="scott" package="queue" function="appendFact">
<tox:parameter value=" By John Smith – Thu Feb 25, 4:54 pm ET<br><br>NEW YORK (Reuters) – Nothing happened today."/>
<tox:parameter value="10245"/>
</tox:model>
</tox:message>
... using saxon9.jar, but got...
org.xml.sax.SAXParseException: The entity "ndash" was referenced, but not declared.
How do I "declare" an entity for a 开发者_开发百科parse? How would I be able to anticipate all the potential entities?
You declare it in a DTD. Since you are using an external DTD, it has to declare it for you. Does tox.dtd contain a declaration for ndash?
If it does not, you need to do something inspired by:
<!DOCTYPE foo [
<!ENTITY % MathML SYSTEM "http://www.example.com/MathML.dtd">
%MathML;
<!ENTITY % SpeechML SYSTEM "http://www.example.com/SpeechML.dtd">
%SpeechML;
]>
You could use one of the standard XHTML dtds that defines ndash, for example.
If tox.dtd does declare it, then you need a resolver to find it.
I think you should use EntityResolver.
精彩评论