Image Uploading To Server In Android
I had some problem before which I solved. Thanks a lot to everyone who replied to the queries. I am trying to upload image from my android application to server (Servelet). I have
Solution 1:
I dont think the body of your request is formatted corrected as multi part form data. The body should contain several different delimited sections, with each section containing the filename and encoding of that section. See the following URL for an example:
http://chxo.com/be2/20050724_93bf.html
If you're only posting one file at a time I would remove the multi part form data header and just post the contents of the file as the request body.
Post a Comment for "Image Uploading To Server In Android"