org.xml.sax.SAXParseException: The character reference must end with the ';' delimiter. Workaround Needed - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T11:56:18Zhttp://stackoverflow.com/feeds/question/1043086http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1043086/org-xml-sax-saxparseexception-the-character-reference-must-end-with-the-deli0org.xml.sax.SAXParseException: The character reference must end with the ';' delimiter. Workaround NeededDunk2009-06-25T10:16:03Z2009-10-27T15:32:19Z
<p>I am trying to use DOM Parser in Java to parse a small XML file I pull off the net from its uri but receive an error complaining about missing semicolon.</p>
<p>Here's link 108:</p>
<pre><code>Document doc = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse("url_to_the_xml_file.xml");
</code></pre>
<p>Here's the error:</p>
<pre><code>[Fatal Error] A01.xml:6:53: The character reference must end with the ';' delimiter.
Exception in thread "main" org.xml.sax.SAXParseException: The character reference must end with the ';' delimiter.
at org.apache.xerces.parsers.DOMParser.parse(Unknown Source)
at org.apache.xerces.jaxp.DocumentBuilderImpl.parse(Unknown Source)
at javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:180)
at Parser.Parse(Parser.java:108)
at Parser.main(Parser.java:185)
</code></pre>
<p>parsing this line of XML</p>
<pre><code><title>Reduction Algorithm using the &#192 TROUS Wavelet Transform.</title>
</code></pre>
<p>Obviously there's a semi-colon missing. Does anyone know any nice and tidy work arounds for this problem?</p>
http://stackoverflow.com/questions/1043086/org-xml-sax-saxparseexception-the-character-reference-must-end-with-the-deli/1043122#10431221Answer by kd304 for org.xml.sax.SAXParseException: The character reference must end with the ';' delimiter. Workaround Neededkd3042009-06-25T10:24:02Z2009-06-25T10:24:02Z<p>I would retrieve the XML separately into a byte array/string and perform a regex replace on the malformed entity before I send it to the parser.</p>
<p>I'm not a regex expert but searching for a &#\d{1,4}[^;] might do one half of the trick.</p>
<p>If you have only this entity malformed you could just <code>String.replaceAll("&#192", "&#192;");</code></p>
http://stackoverflow.com/questions/1043086/org-xml-sax-saxparseexception-the-character-reference-must-end-with-the-deli/1631603#16316030Answer by unknown (google) for org.xml.sax.SAXParseException: The character reference must end with the ';' delimiter. Workaround Neededunknown (google)2009-10-27T15:27:24Z2009-10-27T15:27:24Z<p>Am getting the same exception .</p>
<p>Am using forward tag in the configuration file and am passing the query string ?default=sample&page=homePage</p>
<p>Any one help me out?</p>
http://stackoverflow.com/questions/1043086/org-xml-sax-saxparseexception-the-character-reference-must-end-with-the-deli/1631640#16316400Answer by Walter Mundt for org.xml.sax.SAXParseException: The character reference must end with the ';' delimiter. Workaround NeededWalter Mundt2009-10-27T15:32:19Z2009-10-27T15:32:19Z<p>If you have more problems with the XML syntax than that, a more comprehensive solution is to use HTMLTidy or its Java port, <a href="http://jtidy.sourceforge.net/" rel="nofollow">JTidy</a>, to clean up the markup before you feed it to a parser. It was originally designed for HTML/XHTML, but I'm pretty sure it's capable of tidying arbitrary XML if given the right settings.</p>