how do you parse xml stored in a java string object?
Java\'s XMLReader only parses XML documents from a URI or inputstream. is it not possible to parse from a Strin
The SAXParser can read an InputSource.
An InputSource can take a Reader in its constructor
So, you can put parse XML string via a StringReader
new InputSource(new StringReader("... your xml here....")));