mohammedsuhail
mohammedsuhail

Reputation: 701

Doing HTTP Post with Android

I need to pass some values to a URL by Post Method in my apllication. Please Help

Upvotes: 4

Views: 2976

Answers (2)

Tom
Tom

Reputation: 174

Here's some code that will make an HTTP POST request. Taken from http://androidadvice.blogspot.com/2010/10/httppost-request.html, which has some additional explanation as well.

HttpClient httpclient =  new DefaultHttpClient(httpParameters);
HttpPost httppost = new HttpPost(Constants.MAIN_URL);
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2);
nameValuePairs.add(new BasicNameValuePair("u", eUsername));
nameValuePairs.add(new BasicNameValuePair("p", ePassword));
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));

Upvotes: 6

kgiannakakis
kgiannakakis

Reputation: 104196

You need to use HttpClient. See a related question here.

Upvotes: 1

Related Questions