I just started to learn android application.
I have an image sitting on my external SD card I am trying to send the image via HttpPost to my servlet running on Apache Tomcat 7.0 Then Apache Server will do some kind of image processing and then return the Image to android application.
This is the scenario for my android application
- Run app
- Holding multiple images
- Sending multiple images by httppost to Apache server
- Receiving multiple images from android app then do some process
- Sending multiple images to android app.
I was looking for Send image file using java HTTP POST connections and Sending images using Http Post
However, I can't seem to find the perfect way. ( Especially, not sure how to send images to android..)
Is there any example or solution which I can use ?