Android Server interactive Get and post

Source: Internet
Author: User
Tags response code

GET Request Server
First put the parameters in the list, and then URL code the parameters
list<basicnamevaluepair> params = new linkedlist<basicnamevaluepair> ();
Params.add (New Basicnamevaluepair ("param1", "China"));
Params.add (New Basicnamevaluepair ("param2", "value2"));
Encode the parameter
String param = Urlencodedutils.format (params, "UTF-8");
BaseUrl
String baseUrl = "http://ubs.free4lab.com/php/method.php";
Stitching URLs and parameters
HttpGet GetMethod = new HttpGet (BaseUrl + "?" + param);

HttpClient HttpClient = new Defaulthttpclient ();
try {
HttpResponse response = Httpclient.execute (GetMethod); Initiating a GET request
LOG.I (TAG, "Rescode =" + Response.getstatusline (). Getstatuscode ()); Get the response code
LOG.I (TAG, "result =" + entityutils.tostring (response.getentity (), "Utf-8"));//Get Server response content
} catch (Clientprotocolexception e) {
TODO auto-generated Catch block
E.printstacktrace ();
} catch (IOException e) {
TODO auto-generated Catch block
E.printstacktrace ();
}

Post method

As with the Get method, first put the parameter in the list
params = new linkedlist<basicnamevaluepair> ();
Params.add (New Basicnamevaluepair ("param1", "POST Method"));
Params.add (New Basicnamevaluepair ("Param2", "second parameter"));

try {
HttpPost Postmethod = new HttpPost (BASEURL);
Postmethod.setentity (New urlencodedformentity (params, "utf-8")); Fill in the post entity with the parameters

HttpResponse response = Httpclient.execute (Postmethod); Execute POST method
LOG.I (TAG, "Rescode =" + Response.getstatusline (). Getstatuscode ()); Get the response code
LOG.I (TAG, "result =" + entityutils.tostring (response.getentity (), "Utf-8")); Get response Content

} catch (Unsupportedencodingexception e) {
TODO auto-generated Catch block
E.printstacktrace ();
} catch (Clientprotocolexception e) {
TODO auto-generated Catch block
E.printstacktrace ();
} catch (IOException e) {
TODO auto-generated Catch block
E.printstacktrace ();
}

Android Server interactive get and post

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.