I use the following code to parse the XML file.
DocumentBuilderFactory factory; DocumentBuilder builder; InputStream is; Document dom; try { factory = Docume
You can convert your string to an InputStream using ByteArrayInputStream:
String xml ="valid xml here"; InputStream is = new ByteArrayInputStream(xml.getBytes("UTF-8")); dom = builder.parse(is);