美文网首页
android底层的二种网络请求方式

android底层的二种网络请求方式

作者: 金馆长说 | 来源:发表于2017-03-31 14:58 被阅读90次

1.HttpURLConnection
java.net包中的HttpURLConnection

2. HttpGet,HttpPost
org.apache.http包中的HttpGet和HttpPost类

HttpURLConnection

Get方法

 public static void requestByGet() throws Exception {
     String path = "https://reg.163.com/logins.jsp?id=helloworld&pwd=android";
     // 新建一个URL工具
     URL url = new URL(path);
     // 打开一个HttpURLConnection连接
     HttpURLConnection urlConn = (HttpURLConnection) url.openConnection();
     // 设置超时时间
     urlConn.setConnectTimeout(5 * 1000);
     // 发起连接
     urlConn.connect();
     // 判断请求状态 200成功
     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方法

 public static void requestByPost() throws Throwable {
     String path = "https://reg.163.com/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, new String(data, "UTF-8"));
     } else {
         Log.i(TAG_POST, "Post方法要求掉败");

     }
 }

HttpGet HttpPost

HttpGet方法

 public static void requestByHttpGet() throws Exception {
     String path = "https://reg.163.com/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方法要求掉败");
     }
 }

HttpPost方法要求

 public static void requestByHttpPost() throws Exception {
     String path = "https://reg.163.com/logins.jsp";
     // 新建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(), "UTF-8");
         Log.i(TAG_HTTPGET, "HttpPost方法要求乐成,返回数据如下:");
         Log.i(TAG_HTTPGET, result);

     } else {
         Log.i(TAG_HTTPGET, "HttpPost方法要求掉败");
     }
 }

相关文章

  • android底层的二种网络请求方式

    1.HttpURLConnectionjava.net包中的HttpURLConnection 2. HttpGe...

  • Android网络框架特点

    1、Android-Async-Http Android异步网络请求:底层httpClient,Android5....

  • Retrofit2.0初学总结

    什么是Retrofit? Retrofit是当下Android网络请求库中最热的网络请求库之一,底层是使用OKHt...

  • android网络请求方式

    尊重原创,从我做起。本文参考郭霖《第一行代码》,第2版。 一、网络请求 1.使用RLConnection 2.使用...

  • OkHttp必须弄清楚的几个原理性问题

    前言 okhttp是目前很火的网络请求框架,Android4.4开始HttpURLConnection的底层就是采...

  • Retrofit 心得体会

    Retrofit 是 Square公司开发的一款针对Android网络请求的框架。底层是基于OKhttp,更多使用...

  • Retrofit

    一:简介 Retrofit是Square公司开发的一款针对Android网络请求的框架,Retrofit2底层基于...

  • 网络编程(五)

    Retrofit:是Square公司开发的一款针对Android网络请求的框架,Retrofit2底层基于OkHt...

  • Retrofit

    Retrofit是Square公司开发的一款针对Android网络请求的框架,Retrofit2底层基于OkHtt...

  • Retrofit用法详解

    一、简介 Retrofit是Square公司开发的一款针对Android网络请求的框架,Retrofit2底层基于...

网友评论

      本文标题:android底层的二种网络请求方式

      本文链接:https://www.haomeiwen.com/subject/eilvottx.html