【Android】OkHttp3总结与封装
程序员文章站
2022-06-15 13:25:56
开始使用 在app目录下的build.gradle中添加依赖: GET方法 GET参数的传递可以使用拼接字符串的方式直接拼接到url中。 POST方法 封装 由于OkHttp发送请求的方式比较繁琐,需要构建许多参数,所以需要我们自己进行封装,以下是我的封装方式: 想法有以下几点: 1. 在 和`po ......
开始使用
在app目录下的build.gradle中添加依赖:
implementation 'com.squareup.okhttp3:okhttp:3.13.1' implementation 'com.squareup.okio:okio:2.2.2'
get方法
okhttpclient client = new okhttpclient.builder().build(); request.builder builder = new request.builder().url(url); builder.method("get", null); request request = builder.build(); call call = client.newcall(request); call.enqueue(new callback() { @override public void onfailure(call call, ioexception e) { ... } @override public void onresponse(call call, response response) throws ioexception { ... } });
get参数的传递可以使用拼接字符串的方式直接拼接到url中。
post方法
okhttpclient client = new okhttpclient.builder().build(); formbody.builder formbody = new formbody.builder(); formbody.add(key,value); ... // 添加参数 requestbody form = formbody.build(); request.builder builder = new request.builder(); request request = builder.post(form) .url(url) .build(); call call = client.newcall(request); call.enqueue(new callback() { @override public void onfailure(call call, ioexception e) { ... } @override public void onresponse(call call, response response) throws ioexception { ... } });
封装
由于okhttp发送请求的方式比较繁琐,需要构建许多参数,所以需要我们自己进行封装,以下是我的封装方式:
/** - @author:y4ngyy */ public class httpclient { private okhttpclient client; private static httpclient mclient; private context context; private httpclient(context c) { context = c; client = new okhttpclient.builder() .cookiejar(new persistentcookiejar(new setcookiecache(), new sharedprefscookiepersistor(context))) .followredirects(true) .followsslredirects(true) .build(); } public static httpclient getinstance(context c){ if (mclient == null) { mclient = new httpclient(c); } return mclient; } // get方法 public void get(string url, hashmap<string,string> param, mycallback callback) { // 拼接请求参数 if (!param.isempty()) { stringbuffer buffer = new stringbuffer(url); buffer.append('?'); for (map.entry<string,string> entry: param.entryset()) { buffer.append(entry.getkey()); buffer.append('='); buffer.append(entry.getvalue()); buffer.append('&'); } buffer.deletecharat(buffer.length()-1); url = buffer.tostring(); } request.builder builder = new request.builder().url(url); builder.method("get", null); request request = builder.build(); call call = client.newcall(request); call.enqueue(new callback() { @override public void onfailure(call call, ioexception e) { callback.failed(e); } @override public void onresponse(call call, response response) throws ioexception { callback.success(response); } }); } public void get(string url, mycallback callback) { get(url, new hashmap<string, string>(), callback); } // post 方法 public void post(string url, hashmap<string, string> param, mycallback callback) { formbody.builder formbody = new formbody.builder(); if(!param.isempty()) { for (map.entry<string,string> entry: param.entryset()) { formbody.add(entry.getkey(),entry.getvalue()); } } requestbody form = formbody.build(); request.builder builder = new request.builder(); request request = builder.post(form) .url(url) .build(); call call = client.newcall(request); call.enqueue(new callback() { @override public void onfailure(call call, ioexception e) { callback.failed(e); } @override public void onresponse(call call, response response) throws ioexception { callback.success(response); } }); } public interface mycallback { void success(response res) throws ioexception; void failed(ioexception e); } }
想法有以下几点:
- 在
get()
和post()
方法中,将需要的参数以hashmap传递键值对,并把相应操作封装。 - 第二个
get()
重载是考虑到不需要参数的get请求的情况。 - 留下
mycallback
接口来对不同请求做处理。 - 由于需要保持cookie来做登录等操作,所以用到了第三方库persistentcookiejar
- 考虑到cookie的问题,在不同的activity间需要使用同一个实例才行,有想过使用intent序列化传递对象,但由于activity太多,传递太繁琐,所以直接写成单例模式。
对于okhttp的源码还没有深究,有时间再继续研究。
只是菜鸡一个..有错还请指正..继续努力学习
上一篇: 两种方法实现python操作日志的封装
下一篇: Python中使用Enum类时出现cannot import name ‘Enum‘ from partially initialized module ‘enum‘
推荐阅读
-
详解android与HTML混合开发总结
-
关于php支持的协议与封装协议总结(推荐)
-
Android中封装SDK时常用的注解总结
-
Android ListView与ScrollView冲突的解决方法总结
-
Android BaseActivity与BaseFragmnt的封装方法
-
浅谈Android客户端与服务器的数据交互总结
-
Android事件分发处理机制源码分析与知识点总结
-
Android中NoHttp使用与简单封装
-
关于eclipse 与OpenCV 配置频繁报错的问题总结Program "C:/SDK/android-ndk-xxx/ndk-build.cmd&
-
【Android】OkHttp3总结与封装