I have an android application with an ImageView that receives an image of the device, and I need to save it in a mysql database through a Java web service how could I do this?
I have an android application with an ImageView that receives an image of the device, and I need to save it in a mysql database through a Java web service how could I do this?
You could transform your image into an array of bytes and transfer it to the web service and save it in the database as a binary.