How to save images from an android imageview in a mysql database using a web service rest in java

0

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?

    
asked by anonymous 13.10.2017 / 14:57

1 answer

0

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.

    
13.10.2017 / 15:04