当前位置:   article > 正文

安卓常用网络请求框架XUtils、OkHttp、Volley、Retrofit_android 网络请求框架

android 网络请求框架

3.3 通过RequestBody 手动把json字符串,并放在body中发送

public interface PostBodyInterface {

@POST(“bussIntfAction!getVersionUpdateInfo.action”)

Call getCall(@Body PostBodyReq postBodyReq);

}

/**

  • post 在body中发送json

  • retrofit 自动把java.class转成json字符串,并放在body中

*/

public void postBodyRequest() {

HttpLoggingInterceptor logging = new HttpLoggingInterceptor();

//设置日志Level

if (BuildConfig.DEBUG) {

// development build

logging.setLevel(HttpLoggingInterceptor.Level.BODY);

} else {

// production build

logging.setLevel(HttpLoggingInterceptor.Level.BASIC);

}

OkHttpClient.Builder httpClient = new OkHttpClient.Builder()

.connectTimeout(15, TimeUnit.SECONDS)

.readTimeout(15, TimeUnit.SECONDS)

.writeTimeout(15, TimeUnit.SECONDS)

//添加拦截器到OkHttp,这是最关键的

.addInterceptor(logging);

Log.w(“tan”,“postBodyRequest”);

//步骤4:创建Retrofit对象

Retrofit retrofit = new Retrofit.Builder()

.baseUrl(“http://14.116.xxx.xxx:9001/dp-bussintf/”) // 设置 网络请求 Url

.addConverterFactory(GsonConverterFactory.create()) //设置使用Gson解析(记得加入依赖)

.client(httpClient.build())

.build();

// 步骤5:创建 网络请求接口 的实例

PostBodyInterface request = retrofit.create(PostBodyInterface.class);

PostBodyReq postBodyReq=new PostBodyReq();

postBodyReq.appId=“”;

postBodyReq.method=“bussIntfAction!getVersionUpdateInfo.action”;

postBodyReq.tokenId=“”;

PostBodyData postBodyData=new PostBodyData();

postBodyData.versionTypeName=“45”;

postBodyData.versionType=“1”;

postBodyReq.data=postBodyData;

//对 发送请求 进行封装(设置需要翻译的内容)

Call call = request.getCall(postBodyReq);

//步骤6:发送网络请求(异步)

call.enqueue(new Callback() {

//请求成功时回调

@Override

public void onResponse(Call call, Response response) {

// 步骤7:处理返回的数据结果:输出翻译的内容

try{

Log.w(“tan”,response.body().string());

//不要用下面这个

//Log.w(“tan”,response.body().toString());

}catch (Exception e){

e.printStackTrace();

}

}

//请求失败时回调

@Override

public void onFailure(Call call, Throwable throwable) {

Log.w(“tan”,“请求失败”);

Log.w(“tan”,throwable.getMessage());

}

});

}

public interface PostBodyStringInterface {

@POST(“bussIntfAction!getVersionUpdateInfo.action”)

Call getCall(@Body RequestBody data);

@Headers({“Content-Type: application/json”,“Accept: application/json”})

@POST(“bussIntfAction!getVersionUpdateInfo.action”)

Call getCallForString(@Body String data);

}

/**

  • post 在body中发送json

  • 通过RequestBody 手动把json字符串,并放在body中发送

*/

public void postBodyStringRequest() {

HttpLoggingInterceptor logging = new HttpLoggingInterceptor();

//设置日志Level

if (BuildConfig.DEBUG) {

// development build

logging.setLevel(HttpLoggingInterceptor.Level.BODY);

} else {

// production build

logging.setLevel(HttpLoggingInterceptor.Level.BASIC);

}

OkHttpClient.Builder httpClient = new OkHttpClient.Builder()

.connectTimeout(15, TimeUnit.SECONDS)

.readTimeout(15, TimeUnit.SECONDS)

.writeTimeout(15, TimeUnit.SECONDS)

//添加拦截器到OkHttp,这是最关键的

.addInterceptor(logging);

Log.w(“tan”,“postBodyRequest”);

Gson gson=new Gson();

//步骤4:创建Retrofit对象

Retrofit retrofit = new Retrofit.Builder()

.baseUrl(“http://14.116.xxx.xxx:9001/dp-bussintf/”) // 设置 网络请求 Url

.addConverterFactory(GsonConverterFactory.create(gson)) //设置使用Gson解析(记得加入依赖)

.client(httpClient.build())

.build();

// 步骤5:创建 网络请求接口 的实例

PostBodyStringInterface request = retrofit.create(PostBodyStringInterface.class);

String data=“{“appId”:”“,“data”:{“versionType”:“1”,“versionTypeName”:“45”},“method”:“bussIntfAction!getVersionUpdateInfo.action”,“tokenId”:”“}”;

RequestBody body=RequestBody.create(okhttp3.MediaType.parse(“application/json; charset=utf-8”),data);

//对 发送请求 进行封装(设置需要翻译的内容)

Call call = request.getCall(body);

//步骤6:发送网络请求(异步)

call.enqueue(new Callback() {

//请求成功时回调

@Override

public void onResponse(Call call, Response response) {

// 步骤7:处理返回的数据结果:输出翻译的内容

try{

Log.w(“tan”,response.body().string());

//不要用下面这个

//Log.w(“tan”,response.body().toString());

}catch (Exception e){

e.printStackTrace();

}

}

//请求失败时回调

@Override

public void onFailure(Call call, Throwable throwable) {

Log.w(“tan”,“请求失败”);

Log.w(“tan”,throwable.getMessage());

}

});

}

/**

  • post 在body中发送json

  • 重写Factory方法 手动把json字符串,并放在body中发送

*/

public void postBodyStringForFactory() {

HttpLoggingInterceptor logging = new HttpLoggingInterceptor();

//设置日志Level

if (BuildConfig.DEBUG) {

// development build

logging.setLevel(HttpLoggingInterceptor.Level.BODY);

} else {

// production build

logging.setLevel(HttpLoggingInterceptor.Level.BASIC);

}

OkHttpClient.Builder httpClient = new OkHttpClient.Builder()

.connectTimeout(15, TimeUnit.SECONDS)

.readTimeout(15, TimeUnit.SECONDS)

.writeTimeout(15, TimeUnit.SECONDS)

//添加拦截器到OkHttp,这是最关键的

.addInterceptor(logging);

Log.w(“tan”,“postBodyRequest”);

//步骤4:创建Retrofit对象

Retrofit retrofit = new Retrofit.Builder()

.baseUrl(“http://14.116.xxx.xxx:9001/dp-bussintf/”) // 设置 网络请求 Url

.addConverterFactory(new ToStringConverterFactory()) //设置使用Gson解析(记得加入依赖)

.client(httpClient.build())

.build();

// 步骤5:创建 网络请求接口 的实例

PostBodyStringInterface request = retrofit.create(PostBodyStringInterface.class);

String data=“{“appId”:”“,“data”:{“versionType”:“1”,“versionTypeName”:“45”},“method”:“bussIntfAction!getVersionUpdateInfo.action”,“tokenId”:”“}”;

//RequestBody body=RequestBody.create(okhttp3.MediaType.parse(“application/json; charset=utf-8”),data);

//对 发送请求 进行封装(设置需要翻译的内容)

Call call = request.getCallForString(data);

//步骤6:发送网络请求(异步)

call.enqueue(new Callback() {

//请求成功时回调

@Override

public void onResponse(Call call, Response response) {

// 步骤7:处理返回的数据结果:输出翻译的内容

try{

Log.w(“tan”,response.body().string());

//不要用下面这个

//Log.w(“tan”,response.body().toString());

}catch (Exception e){

e.printStackTrace();

}

}

//请求失败时回调

@Override

public void onFailure(Call call, Throwable throwable) {

Log.w(“tan”,“请求失败”);

Log.w(“tan”,throwable.getMessage());

}

});

}

/**

  • get 请求

*/

public void getRequest() {

Log.w(“tan”,“getRequest”);

//步骤4:创建Retrofit对象

Retrofit retrofit = new Retrofit.Builder()

.baseUrl(“http://fy.iciba.com/”) // 设置 网络请求 Url

.addConverterFactory(GsonConverterFactory.create()) //设置使用Gson解析(记得加入依赖)

.build();

// 步骤5:创建 网络请求接口 的实例

GetRequest_Interface request = retrofit.create(GetRequest_Interface.class);

//a=fy&f=auto&t=auto&w=hello%20world

//对 发送请求 进行封装

Call call = request.getCall(“fy”,“auto”,“auto”,“hello%20world”);

//步骤6:发送网络请求(异步)

call.enqueue(new Callback() {

//请求成功时回调

@Override

public void onResponse(Call call, Response response) {

// 步骤7:处理返回的数据结果

response.body().show();

Translation result = response.body();

}

//请求失败时回调

@Override

public void onFailure(Call call, Throwable throwable) {

System.out.println(“连接失败”);

}

});

}

/**

  • post 发送表单

*/

public void postFormRequest() {

//步骤4:创建Retrofit对象

Retrofit retrofit = new Retrofit.Builder()

.baseUrl(“http://fanyi.youdao.com/”) // 设置 网络请求 Url

.addConverterFactory(GsonConverterFactory.create()) //设置使用Gson解析(记得加入依赖)

.build();

// 步骤5:创建 网络请求接口 的实例

PostRequest_Interface request = retrofit.create(PostRequest_Interface.class);

//对 发送请求 进行封装(设置需要翻译的内容)

Call call = request.getCall(“I love you”);

//步骤6:发送网络请求(异步)

call.enqueue(new Callback() {

//请求成功时回调

@Override

public void onResponse(Call call, Response response) {

// 步骤7:处理返回的数据结果:输出翻译的内容

Log.w(“tan”,response.body().getTranslateResult().get(0).get(0).toString());

}

//请求失败时回调

@Override

public void onFailure(Call call, Throwable throwable) {

Log.w(“tan”,“请求失败”);

Log.w(“tan”,throwable.getMessage());

}

});

}

5.Volley VS OkHttp

Volley的优势在于封装的更好,而使用OkHttp你需要有足够的能力再进行一次封装。而OkHttp的优势在于性能更高,因为 OkHttp基于NIO和Okio ,所以性能上要比 Volley更快。IO 和 NIO这两个都是Java中的概念,如果我从硬盘读取数据,第一种方式就是程序一直等,数据读完后才能继续操作这种是最简单的也叫阻塞式IO,还有一种是你读你的,程序接着往下执行,等数据处理完你再来通知我,然后再处理回调。而第二种就是 NIO 的方式,非阻塞式, 所以NIO当然要比IO的性能要好了,而 Okio是 Square 公司基于IO和NIO基础上做的一个更简单、高效处理数据流的一个库。理论上如果Volley和OkHttp对比的话,更倾向于使用 Volley,因为Volley内部同样支持使用OkHttp,这点OkHttp的性能优势就没了, 而且 Volley 本身封装的也更易用,扩展性更好些。

6.OkHttp VS Retrofit

毫无疑问,Retrofit 默认是基于 OkHttp 而做的封装,这点来说没有可比性,肯定首选 Retrofit。

7.Volley VS Retrofit

这两个库都做了不错的封装,但Retrofit解耦的更彻底,尤其Retrofit2.0出来,Jake对之前1.0设计不合理的地方做了大量重构, 职责更细分,而且Retrofit默认使用OkHttp,性能上也要比Volley占优势,再有如果你的项目如果采用了RxJava ,那更该使用 Retrofit 。所以这两个库相比,Retrofit更有优势,在能掌握两个框架的前提下该优先使用 Retrofit。但是Retrofit门槛要比Volley稍高些, 要理解他的原理,各种用法,想彻底搞明白还是需要花些功夫的,如果你对它一知半解,那还是建议在商业项目使用Volley吧。

参考文章:
https://blog.csdn.net/tantion/article/details/81112039
https://blog.csdn.net/u013068887/article/details/79542361
作者:陈登良 原文链接:https://blog.csdn.net/qq_35448522/article/details/90437532

总结

笔者之前工作是在金融公司可能并不是特别追求技术,而笔者又是喜欢追求技术的人,所以格格不入,只能把目标放在互联网大厂了。也希望大家都去敢于尝试和追逐自己的梦想!
BATJ大厂Android高频面试题

觉得有收获的记得点赞,关注+收藏哦!你们的点赞就是我的动力!

网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。

需要这份系统化学习资料的朋友,可以戳这里获取

一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!

/details/90437532]( )

总结

笔者之前工作是在金融公司可能并不是特别追求技术,而笔者又是喜欢追求技术的人,所以格格不入,只能把目标放在互联网大厂了。也希望大家都去敢于尝试和追逐自己的梦想!
BATJ大厂Android高频面试题

[外链图片转存中…(img-aKclsWZ0-1714611810890)]

[外链图片转存中…(img-ZAVGdiuH-1714611810891)]

[外链图片转存中…(img-M8F8Dn5f-1714611810891)]

[外链图片转存中…(img-RHntuhg0-1714611810892)]

觉得有收获的记得点赞,关注+收藏哦!你们的点赞就是我的动力!

网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。

需要这份系统化学习资料的朋友,可以戳这里获取

一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop】
推荐阅读
相关标签
  

闽ICP备14008679号