Android http post Parameters

Source: Internet
Author: User

Package com. Android. httppost;

Import java. Io. bufferedreader;
Import java. Io. ioexception;
Import java. Io. inputstream;
Import java. Io. inputstreamreader;
Import java.net. httpurlconnection;
Import java.net. url;

Import Android. App. activity;
Import Android. OS. Bundle;
Import Android. widget. textview;

Public class httppost extends activity {
/** Called when the activity is first created .*/
Private textview mtextview1;
@ Override
Public void oncreate (bundle savedinstancestate ){
Super. oncreate (savedinstancestate );
Setcontentview (R. layout. Main );
URL url = NULL;
Httpurlconnection = NULL;
Try
{
Url = new URL ("http: // ddddddd ...");
Inputstream stream = NULL;
Httpurlconnection = (httpurlconnection) URL. openconnection ();
Httpurlconnection. setdooutput (true );
Httpurlconnection. setrequestmethod ("Post ");
String username = "Params ....";

Httpurlconnection. getoutputstream (). Write (username. getbytes ());
Httpurlconnection. getoutputstream (). Flush ();
Httpurlconnection. getoutputstream (). Close ();
Int code = httpurlconnection. getresponsecode ();
System. Out. println ("code" + Code );
Stream = httpurlconnection. getinputstream ();
String STR = convertstreamtostring (Stream );
}
Catch (exception E)
{
E. printstacktrace ();
}
Finally
{
If (httpurlconnection! = NULL)
Httpurlconnection. Disconnect ();
}

}
Public String convertstreamtostring (inputstream is ){
/*
* To convert the inputstream to string we use the bufferedreader. Readline ()

* Method. We iterate until the bufferedreader return NULL which means
* There's no more data to read. Each line will appended to a stringbuilder

* And returned as string.
*/
Bufferedreader reader = new bufferedreader (New inputstreamreader (is ));
Stringbuilder sb = new stringbuilder ();

String line = NULL;
Try {
While (line = reader. Readline ())! = NULL ){
SB. append (LINE + "/N ");
}
} Catch (ioexception e ){
E. printstacktrace ();
} Finally {
Try {
Is. Close ();
} Catch (ioexception e ){
E. printstacktrace ();
}
}

Return sb. tostring ();
}
}

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.