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"/>  

PublicClass MainactivityExtendsActivity {PrivateEditText address;PrivateButton Getbutton;PrivateTextView text; @OverrideProtectedvoidOnCreate (Bundle savedinstancestate) {//After version 4.0 need to add this, or error android.os.NetworkOnMainThreadException Strictmode.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);//InitializationAddress =(EditText) Findviewbyid (r.id.address); Getbutton =(Button) Findviewbyid (R.id.getbutton); Text =(TextView) Findviewbyid (R.id.text); Getbutton.setonclicklistener (NewButton.onclicklistener () {@OverridePublicvoidOnClick (View v) {//TODO auto-generated method stub String url =Address.gettext (). toString (); Getpdaserverdata (URL); } }); }PublicvoidGetpdaserverdata (String URL) {HttpClient client =NewDefaulthttpclient (); HttpPost request;Try{request =NewHttpPost (URL);//Call the Execute (httpurirequest request) of the HttpClient object to send the request, returning a httpresponse httpresponse response =Client.execute (Request);//Return response Code of 200if (Response.getstatusline (). Getstatuscode () = = 200) {// Get the message entity from the response httpentity entity = response.getentity (); IF (Entity! = null entityutils.tostring (entity); Text.settext (out);}} } catch (Clientprotocolexception e) {// TODO auto-generated catch Block E.printstacktrace () ; } catch (IOException e) { // TODO auto-generated catch Block E.printstacktrace (); } }} 

Example Download >>>>>>>>>

Android: Simple Networking Get page code

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.