Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

XmlPullParser: get inner text including XML tags

Suppose you have an XML document like so:

<root>
  That was a <b boldness="very">very bold</b> move.
</root>

Suppose the XmlPullParser is on the opening tag for root. Is there a handy method to read all text within root to a String, sort of like innerHtml in DOM?

Or do I have to write a utility method myself that recreates the parsed tag? This of course seems like a waste of time to me.

String myDesiredString = "That was a <b boldness=\"very\">very bold</b> move."
like image 888
Maarten Avatar asked Apr 17 '13 20:04

Maarten


1 Answers

This method should about cover it, but does not deal with singleton tags or namespaces.

public static String getInnerXml(XmlPullParser parser)
        throws XmlPullParserException, IOException {
    StringBuilder sb = new StringBuilder();
    int depth = 1;
    while (depth != 0) {
        switch (parser.next()) {
        case XmlPullParser.END_TAG:
            depth--;
            if (depth > 0) {
                sb.append("</" + parser.getName() + ">");
            }
            break;
        case XmlPullParser.START_TAG:
            depth++;
            StringBuilder attrs = new StringBuilder();
            for (int i = 0; i < parser.getAttributeCount(); i++) {
                attrs.append(parser.getAttributeName(i) + "=\""
                        + parser.getAttributeValue(i) + "\" ");
            }
            sb.append("<" + parser.getName() + " " + attrs.toString() + ">");
            break;
        default:
            sb.append(parser.getText());
            break;
        }
    }
    String content = sb.toString();
    return content;
}
like image 129
Maarten Avatar answered Nov 20 '22 12:11

Maarten