Android httpclient Basic Use method

Source: Internet
Author: User

GET mode

First, the parameter is put into list, and then the parameter is URL encoded list<basicnamevaluepair> params = new linkedlist<basicnamevaluepair> (); Params.add (New Basicnamevaluepair ("param1", "China"));p Arams.add (New Basicnamevaluepair ("param2", "value2"));// Encode the parameter string param = Urlencodedutils.format (params, "UTF-8");//baseurlstring baseUrl = "http://ubs.free4lab.com/php/ Method.php ";//url and parameter stitching httpget GetMethod = new HttpGet (BaseUrl +"? "+ param); HttpClient HttpClient = new defaulthttpclient (); try {    HttpResponse response = Httpclient.execute (GetMethod);// Initiate 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 mode

In the same way as get, first put the parameter in listparams = new linkedlist<basicnamevaluepair> ();p Arams.add (New Basicnamevaluepair ("param1 "," POST Method "));p Arams.add (New Basicnamevaluepair (" Param2 "," second Parameter ")), try {    HttpPost postmethod = new HttpPost ( BASEURL);    Postmethod.setentity (New urlencodedformentity (params, "utf-8")); Fill in the parameters into post entity    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 httpclient Basic Use method

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.