I am communication with server through XML. The XML gone soo much huge that I am now getting OOM error on my Android phone.

I am using URLConnection.

 while(null != (xmlResponse =
 reader.readLine())) {
                 sb.append(xmlResponse);
              }

reader.readLine() takes tooo much time and finally my app crash. Is there any better way to parse huge XML ??? or any lib ??

link|improve this question

feedback

2 Answers

If you have OOM when performing a readline it is maybe that your lines are too long. Taking care of limiting to a buffer of few kb when reading would help.

link|improve this answer
how can i do this? – Algo May 10 '11 at 3:45
feedback

You can use the Android XmlPullParser, so that you perform the parsing while you are downloading.

link|improve this answer
I am using XMLPullParser but I could only use it when I can read xml. It gives me OOM error whille reader.readLine() – Algo May 6 '11 at 14:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.