I am using SAXParser in Java.
Is there a way to turn off unescaping while parsing xml using SAXParser?
For example I have the following xml:
<tag>
„title”
</tag>
I would like to obtain by characters(char[] ch, int start, int length) message „title”
but the handler unescapes content of the xml and gives:
„title”
I tried with specifying custom EntityResolver, but it seems that resolveEntity() method never gets called.