Android开发中的几种网络请求方式详解

Android开发中的几种网络请求方式详解,第1张

概述Android应用经常会和服务器端交互,这就需要手机客户端发送网络请求,下面介绍四种常用网络请求方式,我这边是通过Android单元测试来完成这四种方法的,还不清楚Android的单元测试的同学们请看Android开发技巧总结中

AndroID应用经常会和服务器端交互,这就需要手机客户端发送网络请求,下面介绍四种常用网络请求方式,我这边是通过AndroID单元测试来完成这四种方法的,还不清楚AndroID的单元测试的同学们请看AndroID开发技巧总结中的AndroID单元测试的步骤一文。

Java.NET包中的httpURLConnection类

Get方式:

// Get方式请求 public static voID requestByGet() throws Exception {  String path = "http://www.jb51.net/logins.Jsp?ID=helloworld&pwd=androID";  // 新建一个URL对象  URL url = new URL(path);  // 打开一个httpURLConnection连接  httpURLConnection urlConn = (httpURLConnection) url.openConnection();  // 设置连接超时时间  urlConn.setConnectTimeout(5 * 1000);  // 开始连接  urlConn.connect();  // 判断请求是否成功  if (urlConn.getResponseCode() == http_200) {   // 获取返回的数据   byte[] data = readStream(urlConn.getinputStream());   Log.i(TAG_GET,"Get方式请求成功,返回数据如下:");   Log.i(TAG_GET,new String(data,"UTF-8"));  } else {   Log.i(TAG_GET,"Get方式请求失败");  }  // 关闭连接  urlConn.disconnect(); } 

Post方式:

// Post方式请求 public static voID requestByPost() throws Throwable {  String path = "http://www.jb51.net/logins.Jsp";  // 请求的参数转换为byte数组  String params = "ID=" + URLEncoder.encode("helloworld","UTF-8")    + "&pwd=" + URLEncoder.encode("androID","UTF-8");  byte[] postData = params.getBytes();  // 新建一个URL对象  URL url = new URL(path);  // 打开一个httpURLConnection连接  httpURLConnection urlConn = (httpURLConnection) url.openConnection();  // 设置连接超时时间  urlConn.setConnectTimeout(5 * 1000);  // Post请求必须设置允许输出  urlConn.setDoOutput(true);  // Post请求不能使用缓存  urlConn.setUseCaches(false);  // 设置为Post请求  urlConn.setRequestMethod("POST");  urlConn.setInstanceFollowRedirects(true);  // 配置请求Content-Type  urlConn.setRequestProperty("Content-Type","application/x-www-form-urlencode");  // 开始连接  urlConn.connect();  // 发送请求参数  DataOutputStream dos = new DataOutputStream(urlConn.getoutputStream());  dos.write(postData);  dos.flush();  dos.close();  // 判断请求是否成功  if (urlConn.getResponseCode() == http_200) {   // 获取返回的数据   byte[] data = readStream(urlConn.getinputStream());   Log.i(TAG_POST,"Post请求方式成功,返回数据如下:");   Log.i(TAG_POST,"UTF-8"));  } else {   Log.i(TAG_POST,"Post方式请求失败");  } }  

org.apache.Http包中的httpGet和httpPost类

Get方式:

// httpGet方式请求 public static voID requestByhttpGet() throws Exception {  String path = "http://www.jb51.net/logins.Jsp?ID=helloworld&pwd=androID";  // 新建httpGet对象  httpGet httpGet = new httpGet(path);  // 获取httpClIEnt对象  httpClIEnt httpClIEnt = new DefaulthttpClIEnt();  // 获取httpResponse实例  httpResponse httpResp = httpClIEnt.execute(httpGet);  // 判断是够请求成功  if (httpResp.getStatusline().getStatusCode() == http_200) {   // 获取返回的数据   String result = EntityUtils.toString(httpResp.getEntity(),"UTF-8");   Log.i(TAG_httpGET,"httpGet方式请求成功,返回数据如下:");   Log.i(TAG_httpGET,result);  } else {   Log.i(TAG_httpGET,"httpGet方式请求失败");  } } 

Post方式:

// httpPost方式请求 public static voID requestByhttpPost() throws Exception {  String path = "http://www.jb51.net/";  // 新建httpPost对象  httpPost httpPost = new httpPost(path);  // Post参数  List<nameValuePair> params = new ArrayList<nameValuePair>();  params.add(new BasicnameValuePair("ID","helloworld"));  params.add(new BasicnameValuePair("pwd","androID"));  // 设置字符集  httpentity entity = new UrlEncodedFormEntity(params,http.UTF_8);  // 设置参数实体  httpPost.setEntity(entity);  // 获取httpClIEnt对象  httpClIEnt httpClIEnt = new DefaulthttpClIEnt();  // 获取httpResponse实例  httpResponse httpResp = httpClIEnt.execute(httpPost);  // 判断是够请求成功  if (httpResp.getStatusline().getStatusCode() == http_200) {   // 获取返回的数据   String result = EntityUtils.toString(httpResp.getEntity(),"httpPost方式请求成功,返回数据如下:");   Log.i(TAG_httpGET,"httpPost方式请求失败");  } } 

以上是一些部分代码,测试的时候在测试类中运行对应的测试方法即可。完整代码点这里下载:源码下载

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

总结

以上是内存溢出为你收集整理的Android开发中的几种网络请求方式详解全部内容,希望文章能够帮你解决Android开发中的几种网络请求方式详解所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1147727.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-31
下一篇 2022-05-31

发表评论

登录后才能评论

评论列表(0条)

保存