I want to send the JSON data below to the server and read the response in android. Following are the Json data.
{ "class": "OrderItemListDto", "orderItemList": [ { "class": "OrderItemDto", "orderId": 24, "itemId": 1, "quantity": 2, "status": "NEW", "sRequest": "none" }, { "class": "OrderItemDto", "orderId": 24, "itemId": 2, "quantity": 2, "status": "NEW", "sRequest": "none" } ] }
Here the data can be enlarged.
json android getjson
FAIZ ANWAR
source share