I am using Volley to transfer the data between Android device and web server.
I found a issue about sending a list of data to the server.
For example, my class will generate the data set like this:
{ "1": { "1_aID": "5", "2_aID": "5", "3_aID": "5", "4_aID": "5" }, "2": { "1_bID": "3", "2_bID": "3", "3_bID": "3" }, "3": { "1_cID": "4" } } How can i send those data to Server?
I found some tutorial of Post data to server. It must using hashmap. Any better solution to handle this case?