org.xml.sax.SAXParseException: The character reference must end with the ';' delimiter. Workaround Needed - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T11:56:18Z http://stackoverflow.com/feeds/question/1043086 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1043086/org-xml-sax-saxparseexception-the-character-reference-must-end-with-the-deli 0 org.xml.sax.SAXParseException: The character reference must end with the ';' delimiter. Workaround Needed Dunk 2009-06-25T10:16:03Z 2009-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>&lt;title&gt;Reduction Algorithm using the &amp;#192 TROUS Wavelet Transform.&lt;/title&gt; </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#1043122 1 Answer by kd304 for org.xml.sax.SAXParseException: The character reference must end with the ';' delimiter. Workaround Needed kd304 2009-06-25T10:24:02Z 2009-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 &amp;#\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("&amp;#192", "&amp;#192;");</code></p> http://stackoverflow.com/questions/1043086/org-xml-sax-saxparseexception-the-character-reference-must-end-with-the-deli/1631603#1631603 0 Answer by unknown (google) for org.xml.sax.SAXParseException: The character reference must end with the ';' delimiter. Workaround Needed unknown (google) 2009-10-27T15:27:24Z 2009-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&amp;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#1631640 0 Answer by Walter Mundt for org.xml.sax.SAXParseException: The character reference must end with the ';' delimiter. Workaround Needed Walter Mundt 2009-10-27T15:32:19Z 2009-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>