The problem with the built in o e is it is similar to a DOM parser for xml in that it will load the entire json document into memory first. Jackson is a json stream processor so it uses a lot less memory and is typically much faster. I lean towards Jackson myself. On Feb 12, 2013 7:27 AM, "Kristopher Micinski" <[email protected]> wrote:
> JSON is so easy to use, I've never really had a problem with org.json. > If you can get by using it I would do that, as it's already in the > API (you won't have statically linked code sitting around clouding > your app). > > kris > > On Tue, Feb 12, 2013 at 7:16 AM, Arun Kumar K <[email protected]> > wrote: > > Hi, > > I want to know which parser is best for android application...... > > What is the different between json and jackson parser. > > which parser is best json or JACKSON > > > > -- > > Thanks & Regards > > K.Arun Kumar > > > > > > -- > > -- > > 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 > > --- > > You received this message because you are subscribed to the Google Groups > > "Android Developers" group. > > To unsubscribe from this group and stop receiving emails from it, send an > > email to [email protected]. > > For more options, visit https://groups.google.com/groups/opt_out. > > > > > > -- > -- > 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 > --- > You received this message because you are subscribed to the Google Groups > "Android Developers" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/groups/opt_out. > > > -- -- 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 --- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.

