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
Try jcabi-xml (see this blog post) with a one-liner:
XML xml = new XMLDocument("...")