Let me take exception to the concept... For large scale XML work (in the mobile environment, I qualify 1000+ lines as that), you should consider setting up a web server for the heavy lifting. Not only does that allow you to rely on established parsers, but CPU time is not nearly an issue as it is on the mobile side. As an added bonus, it opens up a dimension for data sharing between users. To query the server, use a lightweight protocol that's flat that can be parsed out with straight SAX. Could be JSON. That's what I do, anyway.
On Sep 10, 3:04 am, sasi kumar <[email protected]> wrote: > Hi guys, > > I have a doubt in xml parsing. > i'm parsing a xml file. > that xml file contains more than 14000 lines. > I'm fetching 15 tag in that xml file. > it is taking more than 7 times to fetch. > b'coz 14000 lines * 15 tag. > that much time it is taking. > > can any one suggess any idea for this to reduce time. > > or > > give some other coding to fetch xml data easily. > > no i'm using rssreader to fetch data as like in java. > > thanks in advance......... > > -- > Thanks & Regards > Sasi Kumar.S --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

