I have an Android device. I want to fill a form in my app, with edittexts etc (one of these fields would take the path of an image on the SDCard). I want these form contents to be the data for an HTML form in an external website where this file (from the SD Card) needs to be uploaded. The HTML form has an upload button. I do not want to show this HTML webpage to my android app users. Is there any way to do this? Please let me know! Thanks!
EDIT: I've looked through many websites and I understand that I should use a HttpPost. I have a few doubts though: 1. What is the url that you use in HttpPost- Is it the url which contains the form, or the url which the form redirects to. 2. In a multipartentity, what is the first parameter in addPart? Is it the ID given to the field or the name? 3. How does the HttpPost know which form it should go to?