[
{
"id": 1,
"name": "Instant Coffee",
"price": 28.53,
"on_hand_quantity": 27
},
{
"id": 2,
"name": "Cranberries - Dry",
"price": 30.02,
"on_hand_quantity": 29
}
]
Asked
Active
Viewed 38 times
-8

vikas kumar
- 10,447
- 2
- 46
- 52

chuong trung vuong
- 13
- 4
-
attach the netwrok client that you want to use – EL TEGANI MOHAMED HAMAD GABIR Apr 07 '18 at 18:52
1 Answers
0
You can parse json in Android easily
JSONArray jArray = new JSONArray (result);
for(int i=0; I<jArray.length; i++){
JSONObject jObject = jArray.getJSONObject(i);
String name = jObject.getString("name");
}

Fazal Hussain
- 1,129
- 12
- 28