Android HttpClient network communication tool class based on XML

Source: Internet
Author: User

/** * Tools for building communication between servers * * *  */public class Httpclientadapter {private HttpClient client;private HttpRequest reque St;private httpget get;private httppost post;private httpresponse response;public HttpClientAdapter () {// Set Clientclient=new defaulthttpclient ();//Set APN information: IP portif (Stringutils.isnotblank (Globalparams.ip)) {HttpHost Host =new httphost (Globalparams.ip, Globalparams.port), Client.getparams (). Setparameter (Connroutepnames.default_proxy, host);}} /** * Send XML */public inputstream sendpostrequest (string uri, string xml) {//Use post to send xmlpost = new HttpPost (URI); try {Stri ngentity entity = new Stringentity (XML, Constantvalue.charset);p ost.setentity (entity); response = Client.execute (POST) ;//Determine the status code of the reply 200if (Response.getstatusline (). Getstatuscode () = = 200) {//Get the server reply message return response.getentity (). GetContent ();}} catch (Exception e) {e.printstacktrace ();} return null;}}

Android HttpClient network communication tool class based on XML

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.