Android Utililty Methods StringReader Create

List of utility methods to do StringReader Create

Description

The list of methods to do StringReader Create are organized into topic(s).

Method

DocumentstringToXml(final String data)
string To Xml
try {
    final Reader reader = new StringReader(data);
    final InputSource source = new InputSource(reader);
    return DocumentBuilderFactory.newInstance()
            .newDocumentBuilder().parse(source);
} catch (Exception e) {
    throw new RuntimeException(e);