1

I have successfully established a connection using Httpclient GET method. Now I want to parse the data using JSON Parser. Please help me.

Aman Alam
  • 11,231
  • 7
  • 46
  • 81
Umer Hassam
  • 1,332
  • 5
  • 23
  • 42

2 Answers2

4

Look at the org.json package in the Android SDK. It has useful classes like JSONObject and JSONArray that you can use to parse JSON responses.

Rahul
  • 19,744
  • 1
  • 25
  • 29
0

Use the JSONObject class as Rahul said. Its quite good.

Read more about it here

General information about JSON: here

Aman Alam
  • 11,231
  • 7
  • 46
  • 81