Here you can find the source of readText(XmlPullParser parser)
private static String readText(XmlPullParser parser) throws XmlPullParserException, IOException
//package com.java2s; import java.io.IOException; import org.xmlpull.v1.XmlPullParser; import org.xmlpull.v1.XmlPullParserException; public class Main { private static String readText(XmlPullParser parser) throws XmlPullParserException, IOException { String value = null;//from w w w.j a va 2 s . co m while (parser.next() != XmlPullParser.END_TAG) { if (parser.getEventType() == XmlPullParser.END_DOCUMENT) { throw new XmlPullParserException( "reached unexpected end of document"); } else if (parser.getEventType() != XmlPullParser.TEXT) { continue; } String text = parser.getText(); value = textOf(text); } return value; } private static String textOf(String text) { return text.trim().replace("\r", ""); } }