kXML (XmlPullParser) not hitting END_TAG
- by Tejaswi Yerukalapudi
Hello all,
I'm trying to figure out a way to rewrite some of my XML parsing code. I'm currently working with kXML2 and here's my code -
byte[] xmlByteArray;
try {
xmlByteArray = inputByteArray;
ByteArrayInputStream xmlStream = new ByteArrayInputStream(xmlByteArray);
InputStreamReader xmlReader = new…