国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

post請求與get請求

2019-11-09 13:56:59
字體:
來源:轉載
供稿:網友

一.使用HttpURLConnection提交數據

"get"請求

代碼:

String path = "http://地址?數據1名字=" + URLEncoder.encode(數據1,"utf-8") + "&數據2名字=" +URLEncoder.encode(數據2,"utf-8");

URL url = new URL(path);

HttpURLConnection conn = (HttpURLConnection)url.openConnection();

//這里設置請求方式要寫為大寫

conn.setRequestMethod("GET");

conn.setConnectTimeout(5000);

int code = conn.getResponseCode();

if(code == 200){

  InputStream is = conn.getInputStream();

  ByteArrayOutputStream baos = new ByteArrayOutputStream();  int len = -1;  byte[] buffer = new byte[1024];  while ((len = is.read(buffer)) != -1) {    baos.write(buffer, 0, len);  }  is.close();

  //這樣就得到服務器返回的數據了  result = baos.toString();

}

 

 

"post"請求

URL url = new URL(path);

HttpURLConnection conn = (HttpURLConnection)url.openConnection();

//1這里設置請求方式要寫為大寫

conn.setRequestMethod("POST");

//設置響應時長

conn.setConnectTimeout(5000);

//2設置http請求數據的類型為表單類型

conn.setRequestPRoperty("Content-type","application/x-www-form-urlencoded");

String data = "數據1名字=" +URLEncoder.encode(數據1,"utf-8") + "&數據2名字=" + URLEncoder.encode(數據2,"utf-8"); 

//3設置給服務器寫的數據的長度

conn.setRequestProperty("Content-Length",String.valueOf(data.length()));

//4指定要給服務器寫數據

conn.setDoOutput(true);

//5開始向服務器寫數據

conn.getOutputStream().write(data.getBytes);

int code = conn.getResponseCode();

if(code == 200){

  InputStream is = conn.getInputStream();

  ByteArrayOutputStream baos = new ByteArrayOutputStream();  int len = -1;  byte[] buffer = new byte[1024];  while ((len = is.read(buffer)) != -1) {    baos.write(buffer, 0, len);  }  is.close();

  //注意:這里回流的編碼默認是"utf-8"的

  result = baos.toString();

}

二.使用HttpClient提交數據

注:HttpClient會被內置到Android SDK中,可以不添加任何額外jar包直接使用,將文件從com文件夾復制粘貼到項目下就可以使用了

Get方式:

String path = "http://地址?數據1名字=" + URLEncoder.encode(數據1,"utf-8") + "&數據2名字" + URLEncoder.encode(數據2,"utf-8");

//可以將其過程理解為用戶瀏覽器操作

//1打開瀏覽器

HttpClient client = new DefaultHttpClient();

//2輸入地址

HttpGet httpGet = new HttpGet(path);

//3敲回車

HttpResponse response = client.execute(httpGet);

//獲取狀態碼

int code = response.getStatusLine().getStatusCode();

 

Post方式:

String path = "http://地址";

//1打開瀏覽器

HttpClient client = new DefaultHttpClient();

//2輸入地址

HttpPost httpPost = new HttpPost(path);

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

parameters.add(new BasicNameValuePair("數據1名字",數據1));

parameters.add(new BasicNameValuePair("數據2名字",數據1));

httpPost.setEntity(new UrlEncodedFormEntity(parameters,"utf-8"));

//3敲回車

HttpResponse response = client.execute(httpPost);

//4獲取狀態碼

int code = response.getStatusLine().getStatusCode();

 

三.使用AsyncHttpClient框架提交數據

源碼可以在網上下載

將下載好的的源碼中src目錄中源碼拷貝到自己的工程的src目錄下

GET方式:

//請求路徑

String path = "http://地址?數據1名字=" + URLEncoder.encode(數據1) + "&數據2名字" + URLEncoder.encode(數據2);

AsyncHttpClient client = new AsyncHttpClient();

client.get(path,new AsyncHttpResponseHandler() {

  public void onSuccess(int statusCode,Header[]headers,byte[]responseBody){

  //請求成功

    new String(responseBody);//返回的數據

}

  public void onFailure(int statusCode,Header[]headers,byte[]responseBody,Throwable error) {

  //請求失敗

    String(responseBody);

  }

});

 

POST方式:

String path = "http://地址";

AsyncHttpClient client = new AsyncHttpClient();

RequestParams params = new RequestParams();

params.put("數據1名字",數據1);

params.put("數據2名字",數據2);

client.post(path,params,new AsyncHttpResponseHandler() {

  public void onSuccess(int statusCode,Header[]headers,byte[]responseBody){

  //請求成功

    new String(responseBody);//返回的數據

}

  public void onFailure(int statusCode,Header[]headers,byte[]responseBody,Throwable error) {

  //請求失敗

    String(responseBody);

  }

});

 


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 怀来县| 伽师县| 盐边县| 图们市| 东兴市| 扶风县| 江山市| 澳门| 沙雅县| 东兴市| 会同县| 上思县| 获嘉县| 泗阳县| 宝山区| 苍山县| 彭泽县| 锦州市| 永宁县| 南宁市| 铜山县| 江川县| 光泽县| 甘谷县| 龙岩市| 保靖县| 陵川县| 禹州市| 宁远县| 长顺县| 辽源市| 大安市| 中阳县| 镇江市| 延寿县| 任丘市| 石嘴山市| 盐津县| 徐水县| 惠安县| 金平|