Android: Simple Networking Get page code

Source: Internet
Author: User
Tags response code

Set permissions to join in Androidmanifest.xml

<android:name= "Android.permission.INTERNET"/>

 Public classMainactivityextendsActivity {PrivateEditText address; PrivateButton Getbutton; PrivateTextView text; @Overrideprotected voidonCreate (Bundle savedinstancestate) {//after version 4.0 need to add this, or error android.os.NetworkOnMainThreadExceptionStrictmode.setthreadpolicy (NewStrictMode.ThreadPolicy.Builder (). Detectdiskreads (). Detectdiskwrites (). Detectnetwork ()        . Penaltylog (). build ()); Strictmode.setvmpolicy (NewStrictMode.VmPolicy.Builder (). Detectleakedsqlliteobjects (). Detectleakedclosableobjects ()        . Penaltylog (). Penaltydeath (). build ()); //        Super. OnCreate (savedinstancestate);        Setcontentview (r.layout.test); //InitializeAddress=(EditText) Findviewbyid (r.id.address); Getbutton=(Button) Findviewbyid (R.id.getbutton); Text=(TextView) Findviewbyid (R.id.text); Getbutton.setonclicklistener (NewButton.onclicklistener () {@Override Public voidOnClick (View v) {//TODO auto-generated Method StubString URL =Address.gettext (). toString ();            Getpdaserverdata (URL);    }        }); }     Public voidgetpdaserverdata (String URL) {HttpClient client=Newdefaulthttpclient ();        HttpPost request; Try{Request=Newhttppost (URL); //calls the Execute (httpurirequest request) of the HttpClient object to send the request, returning a HttpResponseHttpResponse response =Client.execute (Request); //return response code is            if(Response.getstatusline (). Getstatuscode () = = 200) {                                //get the message entity from the responsehttpentity entity =response.getentity (); if(Entity! =NULL) {String out=entityutils.tostring (entity);                Text.settext (out); }            }                                } Catch(clientprotocolexception e) {//TODO auto-generated Catch blockE.printstacktrace (); } Catch(IOException e) {//TODO auto-generated Catch blockE.printstacktrace (); }    }}

Example Download >>>>>>>>>

Android: Simple Networking Get page code

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.