I have an Android application which gets data from an Apache server. After making some changes on approx 3k rows (each row in database consists of 35 columns) then that data needs to be sent back from android app to the same Apache server. So my question would be how to do it?
My thought were :
- send it with post method and create large JSON file like in here
- make XML file (of all rows) and send it in binary format(still thinking on this one) and then decode in Apache
Currently I don't have any code, just need an guidance on which way to start