首先我们先了解下Get请求和Post请求的区别:

一、HttpClinet方式

1、HTTP GET 示例:

public class TestHttpGetMethod{

public void get(){

BufferedReader in = null;

try{

HttpClient client = new DefaultHttpClient();

HttpGet request = new HttpGet();

request.setURI("http://w26.javaeye.com");

HttpResponse response = client.execute(request);

in = new BufferedReader(new InputStreamReader(response.getEntity().getContent()));

StringBuffer sb = new StringBuffer("");

String line = "";

String NL = System.getProperty("line.separator");

while((line = in.readLine()) != null){

sb.append(line + NL);

}

in.close();

String page = sb.toString();

Log.i(TAG, page);

}catch(Exception e){

Log.e(TAG,e.toString())

}finally{

if(in != null){

try{

in.close();

}catch(IOException ioe){

Log.e(TAG, ioe.toString());

}

}

}

}

}

带参数的 HTTP GET:

HttpGet request = new HttpGet("http://www.baidu.com/s?wd=amos_tl");

client.execute(request);

2、HTTP POST 示例:

public class TestHttpPostMethod{

public void post(){

BufferedReader in = null;

try{

HttpClient client = new DefaultHttpClient();

HttpPost request = new HttpPost("http://localhost/upload.jsp");

List<NameValuePair> postParams = new ArrayList<NameValuePair>();

postParams.add(new BasicNameValuePair("filename", "sex.mov"));

UrlEncodeFormEntity formEntity = new UrlEncodeFormEntity(postParams);

request.setEntity(formEntity);

HttpResponse response = client.execute(request);

in = new BufferedReader(new InputStreamReader(response.getEntity().getContent()));

StringBuffer sb = new StringBuffer("");

String line = "";

String NL = System.getProperty("line.separator");

while((line = in.readLine()) != null){

sb.append(line + NL);

}

in.close();

String result = sb.toString();

Log.i(TAG, result );

}catch(Exception e){

Log.e(TAG,e.toString())

}finally{

if(in != null){

try{

in.close();

}catch(IOException ioe){

Log.e(TAG, ioe.toString());

}

}

}

}

}

二、HttpURLConnection 方式

URL url = null;

HttpURLConnection conn = null;

InputStream in = null;

OutputStream out = null;

byte[] data ="测试字符串".getBytes();

try{

url =new URL("www.xxx.com/servlet");

conn = (HttpURLConnection) url.openConnection();

//设置连接属性

conn.setDoOutput(true);// 使用 URL 连接进行输出

conn.setDoInput(true);// 使用 URL 连接进行输入

conn.setUseCaches(false);// 忽略缓存

conn.setConnectTimeout(30000);//设置连接超时时长,单位毫秒

conn.setRequestMethod("POST");//设置请求方式,POST or GET,注意:如果请求地址为一个servlet地址的话必须设置成POST方式

//设置请求头

conn.setRequestProperty("Accept", "*/*");

conn.setRequestProperty("Connection", "Keep-Alive");

conn.setRequestProperty("Accept-Charset", "utf-8");

if (data != null) {

out = conn.getOutputStream();

out.write(data);

}

int code = conn.getResponseCode();

if(code ==200){

in = conn.getInputStream();// 可能造成阻塞

long len = conn.getContentLength();

byte[] bs = new byte[(int) len];//返回结果字节数组

int all = 0;

int dn = 0;

while ((dn = in.read(bs, all, 1)) > 0) {

all += dn;

if (all == len) {

break;

}

}

}

}

======================================

那么接下来让我们看看在Android平台开发中如何执行一个Post请求:

以下是代码示例:


package com.jixuzou.search;
import java.util.ArrayList;
import java.util.List;
import org.apache.http.HttpResponse;
import org.apache.http.NameValuePair;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.message.BasicNameValuePair;
import org.apache.http.protocol.HTTP;
import org.apache.http.util.EntityUtils;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
public class mian extends Activity {
/** Called when the activity is first created. */
private Button btnTest;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
btnTest = (Button) findViewById(R.id.Button01);
btnTest.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
getWeather();
}
});
}
private void getWeather(){
try {
final String SERVER_URL = "http://webservice.webxml.com.cn/WebServices/WeatherWS.asmx/getWeather"; // 定义需要获取的内容来源地址
HttpPost request = new HttpPost(SERVER_URL); // 根据内容来源地址创建一个Http请求
List params = new ArrayList();
params.add(new BasicNameValuePair("theCityCode", "长沙")); // 添加必须的参数
params.add(new BasicNameValuePair("theUserID", "")); // 添加必须的参数
request.setEntity(new UrlEncodedFormEntity(params, HTTP.UTF_8)); // 设置参数的编码
HttpResponse httpResponse = new DefaultHttpClient().execute(request); // 发送请求并获取反馈
// 解析返回的内容
if (httpResponse.getStatusLine().getStatusCode() != 404)
{
String result = EntityUtils.toString(httpResponse.getEntity());
System.out.println(result);
}
} catch (Exception e) {
}
}
}



表单提交中get和 post方式的区别有5点:
1.get是从服务器上获取数据,post是向服务器传送数据。
2.get是把参数数据队列加到提交表单的 ACTION属性所指的URL中,值和表单内各个字段一一对应,在URL中可以看到。post是通过HTTPpost机制,将表单内各个字段与其内容放置在HTML HEADER内一起传送到ACTION属性所指的URL地址。用户看不到这个过程。
3.对于get方式,服务器端用 Request.QueryString获取变量的值,对于post方式,服务器端用Request.Form获取提交的数据。
4.get 传送的数据量较小,不能大于2KB。post传送的数据量较大,一般被默认为不受限制。但理论上,IIS4中最大量为80KB,IIS5中为100KB。

5.get安全性非常低,post安全性较高。
6.
说POST比GET安全性高差不多算是一种误解,不过如果误用了GET会容易导致的一些安全隐患,这时候才有POST比GET安全的说法。意思就是GET应该用于零幂操作,也就是如果一个操作进行多次与进行一次是一个效果,那么就合适于用GET,实际上这时候也应该用GET。POST也完全保护不了任何东西,但是它避免了CSRF这种对客户端用户的傻瓜式攻击。说白了就是GET比较方便,所以就导致了一些隐患。与此相对的,GET得到的内容才能被搜索引擎收录,靠POST请求得到的结果是不可能被搜索引擎收录的。

更多相关文章

  1. Android 数据流量(3G,4G)与wifi 转换实时监听
  2. android获取CPU参数(命令行方式)
  3. Android使用okHttp(get方式)登录
  4. android中sqlite数据库操作
  5. Android分享到腾讯微博,信息,新浪微博等等,的实现方式
  6. 《Android》Lesson22-数据存储
  7. Android Listview设置监听器并获取子项数据
  8. Android在WebView加载数据时展示loading的Dialog
  9. 第四例:Intent启动Activity的几种方式(一)

随机推荐

  1. Android:从Eclipse到Android(安卓)Studio
  2. android 在google商店里搜索不到的问题
  3. android 计算器(2)
  4. android studio 程序员有福了—从layout
  5. 设置 listview 滚动条样式
  6. android 开发实现静默安装
  7. android 自定义progressbar进度条颜色
  8. Andriod开发必备资料
  9. AndroidShortcuts
  10. Android中的Adapter