Android网络加载框架
文章平均质量分 93
null
gujunhe
Android&flutter
展开
-
网络加载框架Retrofit
1.Retrofit简介 A type-safe HTTP client for Android and Java。封装了OkHttp,也是由Square公司贡献的一个处理网络请求的 开源项目。 github地址:https://github.com/square/retrofit implementation ‘com.squareup.retrofit2:retrofit:2.9.0’ ...原创 2021-10-31 13:52:50 · 5377 阅读 · 0 评论 -
网络加载框架OkHttp
1.什么是OkHttp github地址:https://square.github.io/okhttp/ 由Square公司贡献的一个处理网络请求的开源项目,是目前Android使用最广泛的网络框架。从Android4.4开始 HttpURLConnection的底层实现采用的是OkHttp。 1.支持HTTP/2并允许对同一主机的所有请求共享一个套接字; 2.如果非HTTP/2,则通过连接池,减少了请求延迟; 3.默认请求GZip压缩数据; 4.响应缓存,避免了重复请求的网络; 依赖: implem原创 2021-10-31 00:13:23 · 668 阅读 · 1 评论