2

I am developing blackberry applications using eclipse plugin. I want to parse a json response from a webservice.. I am working for Blackberry OS 5.. can anyone provide a clean json parser ??

Arun Kumar Munusamy
  • 871
  • 1
  • 10
  • 28

2 Answers2

8

To parse json response for blackberry os5 you need to import org.json.me and org.json.me.util packages to download these packages refer go through this link.

https://github.com/upictec/org.json.me/.

To parse json response there are lot of references go through

How to parse the JSON response in Blackberry/J2ME?

Blackberry JDE JSON parsing?

Community
  • 1
  • 1
koti
  • 3,681
  • 5
  • 34
  • 58
0

First you need to download the package containing classes used to parse.For downloading these packages refer this site

https://github.com/upictec/org.json.me/. or if you don'nt get then search for json parsing packeges for blackberry in google and then download the package.After downloadin packages you unzip it and then copy this packages (in src package) of your blackberry project application.

After coping you can import the classes the you need to used for parsing.To know what classes is used to parse just search parsing examples in google there you have lot ofexamples that explains it.

kehnar
  • 1,387
  • 2
  • 12
  • 25