HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("www.yourUrl.com");
Here HttpClient Object is created and you are using post method. Using Http post method you can send and get data from server,whereas using Http Get you can only get the data.
No comments:
Post a Comment