Say I have the following bits of XML:
<string>&</string>
<string>&</string>
Is there a Java XML parsing API that will preserve them as is when reading them?
I've explored SAX, DOM, and am currently on StAX. They all convert the references before they feed me the character data.
Thanks!