OKHttp 的使用
Posted yanglanwan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了OKHttp 的使用相关的知识,希望对你有一定的参考价值。
1_OKHttp 简介
1.1_简介
OKHttp是一款高效的HTTP客户端,支持连接同一地址的链接共享同一个socket, 通过连接池来减小响应延迟,还有透明的 GZIP 压缩,请求缓存等优势,其核心 主要有路由、连接协议、拦截器、代理、安全性认证、连接池以及网络适配,拦 截器主要是指添加,移除或者转换请求或者回应的头部信息
这个库也是 square 开源的一个网络请求库(okhttp 内部依赖 okio)。现在已被 Google 使用在 android 源码上了,可见其强大。
关于网络请求库,现在应该还有很多人在使用 android-async-http。他内部使 用的是 HttpClient,但是 Google 在 6.0 版本里面删除了 HttpClient 相关 API, 可见这个库现在有点过时了。
1.2_下载地址
http://square.github.io/okhttp/
1.3_OKHttp 主要功能
1、联网请求文本数据
2、大文件下载
3、大文件上传
4、请求图片
2_原生 OKHttp 的 Get 和 Post 请求小案例
参照网址:
http://square.github.io/okhttp/
1.1_小案例的布局和代码
请求网络测试地址:
http://api.m.mtime.cn/PageSubArea/TrailerList.api
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:orientation="vertical" android:paddingTop="@dimen/activity_vertical_margin" tools:context="com.atguigu.okhttpsample.MainActivity"> <Button android:id="@+id/btn_get" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="get 请求"/> <Button android:id="@+id/btn_post" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="post 请求"/> <TextView android:id="@+id/tv_result" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="显示请求数据"/> </LinearLayout>
1.2_点击事件
@Override protected void onCreate(Bundle savedInstanceState) super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); btn_get = (Button) findViewById(R.id.btn_get); btn_post = (Button) findViewById(R.id.btn_post); tv_result = (TextView) findViewById(R.id.tv_result); // 设 置 点 击 事 件 btn_get.setOnClickListener(this); btn_post.setOnClickListener(this); @Override public void onClick(View v) switch (v.getId()) case R.id.btn_get: getDataFromByGet(); break; case R.id.btn_post: getDataFromByPost(); break;
1.3_OKHttp 的get 请求
private void getDataFromByGet() new Thread() @Override public void run() super.run(); try String resutl = get("http://api.m.mtime.cn/PageSubArea/TrailerList.api"); Message msg = Message.obtain(); msg.what = GET; msg.obj = resutl; handler.sendMessage(msg); catch (IOException e) e.printStackTrace(); .start(); /** * get * 请 求 * @param url * @return * @throws IOException */ private String get(String url) throws IOException Request request = new Request.Builder().url(url).build(); Response response = client.newCall(request).execute(); return response.body().string();
1.4_OKHttp 的post 请求
private void getDataFromByPost() new Thread() @Override public void run() super.run(); String resutl = null; try resutl = post("http://api.m.mtime.cn/PageSubArea/TrailerList.api", ""); Message msg = Message.obtain(); msg.what = POST; msg.obj = resutl; handler.sendMessage(msg); catch (IOException e) e.printStackTrace(); .start(); /** * post * 请 求 * @param url * @param json * @return * @throws IOException */ private String post(String url, String json) throws IOException RequestBody body = RequestBody.create(JSON, json); Request request = new Request.Builder().url(url).post(body).build(); Response response = client.newCall(request).execute(); return response.body().string();
1.5_在Handler中显示数据
/** * get * 请 求 */ private static final int GET = 1; /** * post 请 求 */ private static final int POST = 2; private Button btn_get, btn_post; private TextView tv_result; private OkHttpClient client = new OkHttpClient(); private Handler handler = new Handler() @Override public void handleMessage(Message msg) super.handleMessage(msg); switch (msg.what) case GET://get 请 求 tv_result.setText(msg.obj.toString()); break; case POST://post 请 求 tv_result.setText(msg.obj.toString()); break; ;
以上是关于OKHttp 的使用的主要内容,如果未能解决你的问题,请参考以下文章